try {
CDMAKeyFactory factory = new CDMAKeyFactory();
URL fileURL = ArchivingCDMAPluginTest.class.getResource("testCouleurExpression.vc");
CDMAKey key = factory.generateKeyGroupList(fileURL.toURI(), new String[] {});
ITextMatrixTarget target = new BasicStringMatrixTarget();
StringMatrixBox stringMatrixBox = new StringMatrixBox();
stringMatrixBox.connectWidget(target, key);
String[] result = target.getFlatStringMatrix();
System.out.println("--------------------");
if (result != null) {
for (String elem : result) {
System.out.println(elem);
}