IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
SetAccessor.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 SetAccessor : Accessor<object>
12 {
13
14 MethodAccessor<Func<object, object>> iterator;
15
20 public SetAccessor(AccessorTypeResolver resolver) :
21 base(resolver, "java.util.Set")
22 {
23
24 }
25
31 public object InvokeIterator(object self) => GetMethod(ref iterator, nameof(iterator), Resolve("java.util.Iterator")).Invoker(self);
32
33 }
34
35#endif
36
37}