TestAnnotation4.java :  » android-core » platform-libcore » org » apache » harmony » annotation » tests » java » lang » annotation » Android Open Source

Android Open Source » android core » platform libcore 
platform libcore » org » apache » harmony » annotation » tests » java » lang » annotation » TestAnnotation4.java
package org.apache.harmony.annotation.tests.java.lang.annotation;

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

@Retention(RetentionPolicy.RUNTIME)
@Target( {ElementType.METHOD})
public @interface TestAnnotation4 {
    int i() default 0;
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.