Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
3 changes: 2 additions & 1 deletion src/documentation/docfx.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@
"https://xref.docs.microsoft.com/query?uid={uid}"
],
"xref": [
"https://cliparser.masesgroup.com/xrefmap.yml"
"https://cliparser.masesgroup.com/xrefmap.yml",
"https://jcobridge-api.masesgroup.com/xrefmap.yml"
],
"postProcessors": [ "ExtractSearchIndex" ],
"globalMetadata": {
Expand Down
2 changes: 1 addition & 1 deletion src/documentation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ JNet uses [JCOBridge](https://www.jcobridge.com), and its [features](https://www
* Documentation is shared;
* **Dynamic code**: it helps to write a Java/Scala/Kotlin/etc seamless language code directly inside a standard .NET application written in C#/VB.NET: look at this [simple example](https://www.jcobridge.com/net-examples/dotnet-examples/) and [JNet APIs extensibility](src/documentation/articles/API_extensibility.md).

[JCOBridge 2.6.*](https://www.jcobridge.com), and consequently JNet, can be used for free without any obligations; you need to purchase a commercial license, or uninstall the software, if you have direct or indirect incomes from the product usage.
[JCOBridge 2.6.*](https://www.jcobridge.com) can be used for free without any obligations; you need to purchase a commercial license, or uninstall the software, if you have direct or indirect incomes from the product usage.

### JCOBridge resources

Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Awt/Dnd/DragGestureListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface IDragGestureListener : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/dnd/DragGestureListener.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IDragGestureListener"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/dnd/DragGestureListener.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IDragGestureListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class DragGestureListener : IDragGestureListener
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Awt/Dnd/DragSourceAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public interface IDragSourceAdapter : IJVMBridgeBase
}

/// <summary>
/// Listener for DragSourceAdapter. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IDragSourceAdapter"/>
/// Listener for DragSourceAdapter. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IDragSourceAdapter"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class DragSourceAdapter : IDragSourceAdapter
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Awt/Dnd/DragSourceListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface IDragSourceListener : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/dnd/DragSourceListener.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IDragSourceListener"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/dnd/DragSourceListener.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IDragSourceListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class DragSourceListener : IDragSourceListener
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Awt/Dnd/DropTargetListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface IDropTargetListener : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/dnd/DropTargetListener.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IDropTargetListener"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/dnd/DropTargetListener.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IDropTargetListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class DropTargetListener : IDropTargetListener
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface IAWTEventListener : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/AWTEventListener.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IAWTEventListener"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/AWTEventListener.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IAWTEventListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class AWTEventListener : IAWTEventListener
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Awt/EventNs/ActionListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public partial interface IActionListener : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/ActionListener.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IActionListener"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/ActionListener.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IActionListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class ActionListener : IActionListener
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface IAdjustmentListener : IJVMBridgeBase
}

/// <summary>
/// Listener for AdjustmentListener. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IAdjustmentListener"/>
/// Listener for AdjustmentListener. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IAdjustmentListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class AdjustmentListener : IAdjustmentListener
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface IComponentListener : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/ComponentListener.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IComponentListener"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/ComponentListener.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IComponentListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class ComponentListener : IComponentListener
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Awt/EventNs/FocusListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface IFocusListener : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/FocusListener.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IFocusListener"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/FocusListener.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IFocusListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class FocusListener : IFocusListener
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface IInputMethodListener : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/InputMethodListener.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IInputMethodListener"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/InputMethodListener.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IInputMethodListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class InputMethodListener : IInputMethodListener
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Awt/EventNs/ItemListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface IItemListener : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/ItemListener.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IItemListener"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/ItemListener.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IItemListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class ItemListener : IItemListener
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Awt/EventNs/KeyListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface IKeyListener : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/KeyListener.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IKeyListener"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/KeyListener.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IKeyListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class KeyListener : IKeyListener
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Awt/EventNs/MouseAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public interface IMouseAdapter : IJVMBridgeBase
}

/// <summary>
/// Listener for MouseAdapter. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IMouseAdapter"/>
/// Listener for MouseAdapter. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IMouseAdapter"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class MouseAdapter : IMouseAdapter
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Awt/EventNs/TextListener.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface ITextListener : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/TextListener.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="ITextListener"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/TextListener.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="ITextListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class TextListener : ITextListener
Expand Down
2 changes: 1 addition & 1 deletion src/net/JNet/Developed/Java/Awt/EventNs/WindowAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public interface IWindowAdapter : IJVMBridgeBase
}

/// <summary>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/WindowAdapter.html"/>. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IWindowAdapter"/>
/// Listener for <see href="https://docs.oracle.com/en/java/javase/11/docs/api/java.desktop/java/awt/event/WindowAdapter.html"/>. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IWindowAdapter"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class WindowAdapter : IWindowAdapter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public partial interface IPropertyChangeListener : IJVMBridgeBase
}

/// <summary>
/// Listener for PropertyChangeListener. Extends <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeListener.htm"/>, implements <see cref="IPropertyChangeListener"/>
/// Listener for PropertyChangeListener. Extends <see cref="JVMBridgeListener"/>, implements <see cref="IPropertyChangeListener"/>
/// </summary>
/// <remarks>Remember to Dispose the object otherwise there is a resource leak, the object contains a reference to the the corresponding JVM object</remarks>
public partial class PropertyChangeListener : IPropertyChangeListener
Expand Down
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/AbstractMethodError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ namespace Java.Lang
/// </summary>
public class AbstractMethodError : IncompatibleClassChangeError
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeException_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.AbstractMethodError";
}
}
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/Annotation/Annotation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@ namespace Java.Lang.Annotation
#if JNETREFLECTOR
public class Annotation : JVMBridgeBase<Annotation>
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeBase_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.annotation.Annotation";
/// <summary>
/// Returns the annotation type of this annotation.
Expand Down
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/ArithmeticException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ namespace Java.Lang
/// </summary>
public class ArithmeticException : RuntimeException
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeException_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.ArithmeticException";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ namespace Java.Lang
/// </summary>
public class ArrayIndexOutOfBoundsException : IndexOutOfBoundsException
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeException_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.ArrayIndexOutOfBoundsException";
}
}
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/ArrayStoreException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ namespace Java.Lang
/// </summary>
public class ArrayStoreException : RuntimeException
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeException_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.ArrayStoreException";
}
}
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/AssertionError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ namespace Java.Lang
/// </summary>
public class AssertionError : Error
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeException_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.AssertionError";
}
}
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/BootstrapMethodError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ namespace Java.Lang
/// </summary>
public class BootstrapMethodError : LinkageError
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeException_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.BootstrapMethodError";
}
}
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/Class.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ static Java.Lang.ClassLoader storeLoader()
/// Returns the cached <see cref="Java.Lang.ClassLoader.SystemClassLoader"/>, it is used internally from <see cref="Of{T}"/>
/// </summary>
public static Java.Lang.ClassLoader SystemClassLoader => _loader;
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeBase_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.Class";
/// <summary>
/// Returns the <see cref="Class"/> object associated with the class or interface with the given string name.
Expand Down
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/ClassCastException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ namespace Java.Lang
/// </summary>
public class ClassCastException : RuntimeException
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeException_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.ClassCastException";
}
}
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/ClassCircularityError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ namespace Java.Lang
/// </summary>
public class ClassCircularityError : LinkageError
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeException_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.ClassCircularityError";
}
}
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/ClassFormatError.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ namespace Java.Lang
/// </summary>
public class ClassFormatError : LinkageError
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeException_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.ClassFormatError";
}
}
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/ClassLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,7 @@ namespace Java.Lang
/// </summary>
public class ClassLoader : JVMBridgeBase<ClassLoader>
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeBase_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.ClassLoader";
/// <summary>
/// Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
Expand Down
4 changes: 1 addition & 3 deletions src/net/JNet/Developed/Java/Lang/ClassNotFoundException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@ namespace Java.Lang
/// </summary>
public class ClassNotFoundException : ReflectiveOperationException
{
/// <summary>
/// <see href="https://www.jcobridge.com/api-clr/html/P_MASES_JCOBridge_C2JBridge_JVMBridgeException_BridgeClassName.htm"/>
/// </summary>
/// <inheritdoc />
public override string BridgeClassName => "java.lang.ClassNotFoundException";
}
}
Loading
Loading