IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
CallerID.cs
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2015 Jeroen Frijters
3
4 This software is provided 'as-is', without any express or implied
5 warranty. In no event will the authors be held liable for any damages
6 arising from the use of this software.
7
8 Permission is granted to anyone to use this software for any purpose,
9 including commercial applications, and to alter it and redistribute it
10 freely, subject to the following restrictions:
11
12 1. The origin of this software must not be misrepresented; you must not
13 claim that you wrote the original software. If you use this software
14 in a product, an acknowledgment in the product documentation would be
15 appreciated but is not required.
16 2. Altered source versions must be plainly marked as such, and must not be
17 misrepresented as being the original software.
18 3. This notice may not be removed or altered from any source distribution.
19
20 Jeroen Frijters
21 jeroen@frijters.net
22
23*/
24using System;
25using System.Reflection;
26
27using IKVM.Runtime;
28
30{
31
32 static class CallerID
33 {
34
35 public static global::java.lang.Class GetClass(object obj)
36 {
37#if FIRST_PASS
38 throw new NotImplementedException();
39#else
40 return JVM.Context.ClassLoaderFactory.GetJavaTypeFromType(obj.GetType().DeclaringType).ClassObject;
41#endif
42 }
43
44 public static global::java.lang.ClassLoader GetClassLoader(object obj)
45 {
46#if FIRST_PASS
47 throw new NotImplementedException();
48#else
49 return JVM.Context.ClassLoaderFactory.GetJavaTypeFromType(obj.GetType().DeclaringType).ClassLoader.GetJavaClassLoader();
50#endif
51 }
52
53 public static global::java.lang.ClassLoader GetAssemblyClassLoader(Assembly asm)
54 {
55#if FIRST_PASS
56 throw new NotImplementedException();
57#else
58 return JVM.Context.AssemblyClassLoaderFactory.FromAssembly(asm).GetJavaClassLoader();
59#endif
60 }
61
62 }
63
64}
IKVM.Reflection.Assembly Assembly
Main state of the running JVM.
RuntimeAssemblyClassLoader FromAssembly(Assembly assembly)
Obtains the RuntimeAssemblyClassLoader for the given Assembly. This method should not be used with dy...
RuntimeAssemblyClassLoaderFactory AssemblyClassLoaderFactory
Gets the RuntimeAssemblyClassLoaderFactory associated with this instance of the runtime.
RuntimeClassLoaderFactory ClassLoaderFactory
Gets the RuntimeClassLoaderFactory associated with this instance of the runtime.
static global::java.lang.Class GetClass(object obj)
Definition CallerID.cs:35
static global::java.lang.ClassLoader GetAssemblyClassLoader(Assembly asm)
Definition CallerID.cs:53
static global::java.lang.ClassLoader GetClassLoader(object obj)
Definition CallerID.cs:44