IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
MapAccessor.cs
Go to the documentation of this file.
1using System;
2
4{
5
6#if FIRST_PASS == false && EXPORTER == false && IMPORTER == false
7
11 internal sealed class MapAccessor : Accessor<object>
12 {
13
14 MethodAccessor<Func<object, object>> entrySet;
15
20 public MapAccessor(AccessorTypeResolver resolver) :
21 base(resolver, "java.util.Map")
22 {
23
24 }
25
31 public object InvokeEntrySet(object self) => GetMethod(ref entrySet, nameof(entrySet), Resolve("java.util.Set")).Invoker(self);
32
33 }
34
35#endif
36
37}