I am just looking at your Act / Judgement metadata screens .. there seem to be compilation errors in them ..
for e.g. ActMainMetadata has this code :
private ComboBoxModel setActTypesModel() {
DefaultComboBoxModel publicationTypesNamesModel = null;
try {
String sqlStm = "SELECT [LG_Type_ID], [LG_Type_Name], [LG_Type_Name_E], [LG_Type_Name_AN] FROM LG_Type";
ResultSet rs = CommonConnectorFunctions.ConnectMMSM(sqlStm);
(Note in the above ConnectMMSM takes 1 parameter )
And when I look in CommonConnectorFunctions ConnectMMSM takes 2 parameters
public static ResultSet ConnectMMSM(String dbName, String sqlStm) {
String connectionUrl = "jdbc:sqlserver://l-share;databaseName="+ dbName+ ";selectMethod=cursor";
// Declare the JDBC objects.
Connection con = null;
Statement stmt = null;
ResultSet rs = null;
Also JudgmentMetadataExtra has code like this :
if (metadata.get(i).getName().equalsIgnoreCase("BungeniLanguageCode")) {
docMetaModel.setBungeniLanguageCode(metadata.get(i).getValue());
}
if (metadata.get(i).getName().equalsIgnoreCase("BungeniFamily")) {
docMetaModel.setBungeniFamily(metadata.get(i).getValue());
But these functions setBungeniLanguageCode, setBungeniFamily etc don't exist ...
I think you have made an incomplete commit into SVN ?
Ashok