Ich habe eine Ant Aufgabe erstellt, wobei ich eine Eigenschaft Array haben möchte? Zunächst einmal, ist es möglich? Erlaubt Ant uns, eine Eigenschaft Array haben?
public class MyTask extends Task {
private String tokens[] = null;
public void setTokens(String[] _tokens) {
//...
}
public void execute() {
// iterator over the conditions
}
}
Wie setzt man nun Token in der Ant-Build-Datei?