Home | History | Annotate | Download | only in args

Lines Matching defs:excludes

380                 final String [] excludes = optdef.getExcludesSet (); // not canonicalized
381 if (excludes != null)
383 for (int x = 0; x < excludes.length; ++ x)
385 final Opt xopt = opts.getOpt (excludes [x]);
1391 KEYWORDS.put (Token.EXCLUDES.getValue (), Token.EXCLUDES);
1486 static final Token EXCLUDES = new Token (EXCLUDES_ID, "excludes");
1557 final String [] excludes = optdef.getExcludesSet ();
1558 if (excludes != null)
1560 for (int x = 0; x < excludes.length; ++ x)
1562 final OptDef xopt = result.getOptDef (excludes [x], null);
1564 throw new IllegalArgumentException ("option [" + optdef.getCanonicalName () + "] specifies an unknown option [" + excludes [x] + "] in its \'excludes\' set");
1567 throw new IllegalArgumentException ("option [" + optdef.getCanonicalName () + "] specifies a required option [" + excludes [x] + "] in its \'excludes\' set");
1570 throw new IllegalArgumentException ("option [" + optdef.getCanonicalName () + "] specifies itself in its \'excludes\' set");