IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
DotNetBasicFileAttributeViewAccessor.cs
Go to the documentation of this file.
2{
3
4#if FIRST_PASS == false && EXPORTER == false && IMPORTER == false
5
9 internal sealed class DotNetBasicFileAttributeViewAccessor : Accessor<object>
10 {
11
12 FieldAccessor<object, string> path;
13
18 public DotNetBasicFileAttributeViewAccessor(AccessorTypeResolver resolver) :
19 base(resolver, "sun.nio.fs.DotNetBasicFileAttributeView")
20 {
21
22 }
23
27 public string GetPath(object self) => GetField(ref path, nameof(path)).GetValue(self);
28
29 }
30
31#endif
32
33}