Methods Summary |
---|
public void | setBegin(int begin)
this.beginSpecified = true;
this.begin = begin;
validateBegin();
|
public void | setDelims(java.lang.String s)
delims = s;
// use the empty string to cause monolithic tokenization
if (s == null)
delims = "";
|
public void | setEnd(int end)
this.endSpecified = true;
this.end = end;
validateEnd();
|
public void | setItems(java.lang.Object s)
items = s;
// use the empty string to indicate "no iteration"
if (s == null)
items = "";
|
public void | setStep(int step)
this.stepSpecified = true;
this.step = step;
validateStep();
|