// holen des constructors fuer diese klasse
Constructor con;
try {
con=c.getConstructor(new Class[]{StringBuffer.class, int.class, int.class});
} catch (NoSuchMethodException e) {
throw new NoSuchConstructorException(dataType);
}
/* anlegen einer neuen instanz der syntaxklasse und initialisieren
mit dem uebergebenen wert */
try {