how to create your own marker interface in java.how to notify the JVM to treat as special class? Can any one elaborate it.
Thanks in advance....
|
|
You can't do anything like that with the JVM. Well, you can, but you rarely want to do it. JVM agents can be 'plugged' in the JVM. But marker interfaces are not used for that - they are used to mark classes that are eligible for something. So you can create However, since Java 1.5, the preferred way to do this is via an annotation (even if you use a jvm agent) -
and then verify:
|
||||
|
|