IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
DirectoryStreamFilterAccessor.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 DirectoryStreamFilterAccessor : Accessor<object>
12 {
13
14 MethodAccessor<Func<object, object, bool>> accept;
15
20 public DirectoryStreamFilterAccessor(AccessorTypeResolver resolver) :
21 base(resolver, "java.nio.file.DirectoryStream+Filter")
22 {
23
24 }
25
29 public bool InvokeAccept(object self, object entry) => GetMethod(ref accept, nameof(accept), typeof(bool), typeof(object)).Invoker(self, entry);
30
31 }
32
33#endif
34
35}