Skip to content

Commit

Permalink
Added fields and operators on listeners generation
Browse files Browse the repository at this point in the history
  • Loading branch information
masesdevelopers committed Sep 25, 2024
1 parent a9b79aa commit c91781b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/net/JNetReflector/InternalMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -753,6 +753,11 @@ static void PrepareSingleClass(this Class jClass, IReadOnlyDictionary<string, st
}
else
{
if (jClass.IsJVMClassWithCallbacks())
{
operatorClassBlock = jClass.AnalyzeOperators(classDefinitions, isGeneric, true).AddTabLevel(1);
}
fieldClassBlock = jClass.AnalyzeFields(classDefinitions, isGeneric).AddTabLevel(1);
staticMethodClassBlock = jClass.AnalyzeMethods(signatures, classDefinitions, methodPrefilter, isGeneric, false, jClassIsListener, false, true).AddTabLevel(1);
methodClassBlock = jClass.AnalyzeMethods(signatures, classDefinitions, methodPrefilter, isGeneric, false, jClassIsListener, false, false).AddTabLevel(1);
if (!jClass.IsJVMClassWithCallbacks())
Expand Down

0 comments on commit c91781b

Please sign in to comment.