[jboss-cvs] jboss-seam/src/main/org/jboss/seam/annotations ...

Gavin King gavin.king at jboss.com
Thu Jul 19 03:32:27 EDT 2007


  User: gavin   
  Date: 07/07/19 03:32:27

  Added:       src/main/org/jboss/seam/annotations  Import.java
  Log:
  @Import
  more robust debug page
  
  Revision  Changes    Path
  1.1      date: 2007/07/19 07:32:27;  author: gavin;  state: Exp;jboss-seam/src/main/org/jboss/seam/annotations/Import.java
  
  Index: Import.java
  ===================================================================
  package org.jboss.seam.annotations;
  
  import static java.lang.annotation.ElementType.TYPE;
  import static java.lang.annotation.ElementType.PACKAGE;
  import static java.lang.annotation.RetentionPolicy.RUNTIME;
  
  import java.lang.annotation.Documented;
  import java.lang.annotation.Retention;
  import java.lang.annotation.Target;
  
  /**
   * 
   * 
   * @author Gavin King
   *
   */
  @Target({TYPE, PACKAGE})
  @Retention(RUNTIME)
  @Documented
  public @interface Import 
  {
     String[] value();
  }
  
  
  



More information about the jboss-cvs-commits mailing list