Just from examining the contents of the files, it appears that you are
using an obsolete version of the FBDK. Try the current (20110212)
version. You will have to rebuild your examples "from scratch" because
the XML formats are slightly different due to changes in the standard.
A few other hints:
1. Don't save a FB type with the same name as one that is already in
the library, e.g., "Basic".
2. When writing an algorithm in Java, don't try to replace an output
variable with an input variable, e.g., QQ = X3. These variables are
declared as final by the Java code generator. Instead, use
QQ.copyFrom(X3). Better yet is to write the algorithm in ST:
QQ := X3; then the Java generator is responsible for producing the
correct replacement statement.
3. Update all the "Properties" as the very first thing you do when
building a new library element, as listed in
http://www.holobloc.com/doc/fbdk/propsfrm.htm
--
Best regards,
Jim Christensen