source: release-kits/wirk3/ant-scripts/tasks/antelope/src/ise/antelope/tasks/AssertLevel.java@ 15023

Last change on this file since 15023 was 15023, checked in by oranfry, 16 years ago

did the bulk of the work on wirk3

File size: 290 bytes
Line 
1
2package ise.antelope.tasks;
3
4import org.apache.tools.ant.types.EnumeratedAttribute;
5
6public class AssertLevel extends EnumeratedAttribute {
7 private String[] values = new String[] {"error", "warning", "info", "debug"};
8 public String[] getValues() {
9 return values;
10 }
11}
12
13
Note: See TracBrowser for help on using the repository browser.