summaryrefslogtreecommitdiff
path: root/src/com/redstoner/annotations/Debugable.java
blob: be6ec1cf89971642a81e2a1348b8ae1feb04affa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.redstoner.annotations;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/** Debugable annotation, to be added to methods that invoke the Debugger.notifyMethod method for debugging purposes.
 * 
 * @author Pepich */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Debugable
{}