added the argument collection annotation for situations where fields in a command line args have embedded fields that should be checked for command line args

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@647 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
aaron 2009-05-09 06:59:17 +00:00
parent 55c1b688bd
commit 742840017b
1 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1,37 @@
package org.broadinstitute.sting.utils.cmdLine;
import java.lang.annotation.*;
/**
*
* User: aaron
* Date: May 8, 2009
* Time: 7:12:06 PM
*
* The Broad Institute
* SOFTWARE COPYRIGHT NOTICE AGREEMENT
* This software and its documentation are copyright 2009 by the
* Broad Institute/Massachusetts Institute of Technology. All rights are reserved.
*
* This software is supplied without any warranty or guaranteed support whatsoever. Neither
* the Broad Institute nor MIT can be responsible for its use, misuse, or functionality.
*
*/
/**
* @author aaron
* @version 1.0
* @date May 8, 2009
* <p/>
* @interface ArgumentCollection
* <p/>
* This object represents an class, that is a collection of arguments.
*/
@Documented
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.FIELD})
public @interface ArgumentCollection {
}