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

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

initial import of LiRK3

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.