Hello:
I am testing the API, and i found some problem in the TaskField Object.
The definition value of
ENTERPRISE_TEXT10_VALUE to ENTERPRISE_TEXT17_VALUE (412~419)
are the same with
ENTERPRISE_TEXT20_VALUE to ENTERPRISE_TEXT27_VALUE
(412~419)
----------Here is my testing code.-------------
import net.sf.mpxj.TaskField;
public class TaskFieldTest {
public static void main(String[] args) {
System.out.print(TaskField.
ENTERPRISE_TEXT10.getName());
System.out.println(TaskField.
ENTERPRISE_TEXT10.getValue());
System.out.print(TaskField.
ENTERPRISE_TEXT20.getName());
System.out.println(TaskField.
ENTERPRISE_TEXT20.getValue());
}
}
---------Here is the output------------
Enterprise Text20 412
Enterprise Text20 412
---------------------------------------
ENTERPRISE_TEXT10 and ENTERPRISE_TEXT20 have the same name and value.
Hi,
this is now fixed by the code in CVS.
Jon