25 lines
725 B
Java
25 lines
725 B
Java
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
|
*/
|
|
package com.openeggbert.jdotnet.System;
|
|
|
|
import com.openeggbert.jdotnet.JDotNet.AdditionalClassForDotNetEmulation;
|
|
import java.lang.annotation.ElementType;
|
|
import java.lang.annotation.Retention;
|
|
import java.lang.annotation.RetentionPolicy;
|
|
import java.lang.annotation.Target;
|
|
|
|
/**
|
|
*
|
|
* @author robertvokac
|
|
* Simulates the C# key word event.
|
|
*/
|
|
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Target(ElementType.METHOD)
|
|
@AdditionalClassForDotNetEmulation
|
|
public @interface Event {
|
|
String description() default "Event handler";
|
|
}
|