IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IKVM.Attributes.HideFromJavaAttribute Class Referencesealed

Whenever the VM or compiler generates a helper class/method/field, it should be marked with this custom attribute, so that it can be hidden from Java. More...

Inheritance diagram for IKVM.Attributes.HideFromJavaAttribute:

Public Member Functions

 HideFromJavaAttribute ()
 Initializes a new instance.
 
 HideFromJavaAttribute (HideFromJavaFlags flags)
 Initializes a new instance.
 

Properties

HideFromJavaFlags Flags [get]
 

Detailed Description

Whenever the VM or compiler generates a helper class/method/field, it should be marked with this custom attribute, so that it can be hidden from Java.

Definition at line 34 of file HideFromJavaAttribute.cs.

Constructor & Destructor Documentation

◆ HideFromJavaAttribute() [1/2]

IKVM.Attributes.HideFromJavaAttribute.HideFromJavaAttribute ( )

Initializes a new instance.

Definition at line 42 of file HideFromJavaAttribute.cs.

43 {
44 flags = HideFromJavaFlags.All;
45 }

◆ HideFromJavaAttribute() [2/2]

IKVM.Attributes.HideFromJavaAttribute.HideFromJavaAttribute ( HideFromJavaFlags flags)

Initializes a new instance.

Parameters
flags

Definition at line 51 of file HideFromJavaAttribute.cs.

52 {
53 this.flags = flags;
54 }

Property Documentation

◆ Flags

HideFromJavaFlags IKVM.Attributes.HideFromJavaAttribute.Flags
get

Definition at line 56 of file HideFromJavaAttribute.cs.


The documentation for this class was generated from the following file: