Coverage Report - com.sun.javafx.runtime.Static
 
Classes in this File Line Coverage Branch Coverage Complexity
Static
N/A
N/A
0
 
 1  
 package com.sun.javafx.runtime;
 2  
 
 3  
 import java.lang.annotation.Documented;
 4  
 import static java.lang.annotation.ElementType.METHOD;
 5  
 import static java.lang.annotation.ElementType.TYPE;
 6  
 import java.lang.annotation.Retention;
 7  
 import static java.lang.annotation.RetentionPolicy.CLASS;
 8  
 import java.lang.annotation.Target;
 9  
 
 10  
 /**
 11  
  * Static
 12  
  */
 13  
 @Retention(CLASS)
 14  
 @Documented
 15  
 @Target({METHOD, TYPE})
 16  
 public @interface Static {
 17  
 }