return wordList;
} else if (clazz.equals(RutaWordList.class)) {
RutaWordList list = getWordList((String) value);
return list;
} else if (clazz.equals(RutaTable.class) && value instanceof LiteralWordTableExpression) {
LiteralWordTableExpression lte = (LiteralWordTableExpression) value;
String path = lte.getText();
RutaTable table = getWordTable(path);
return table;
} else if (clazz.equals(RutaTable.class)) {
RutaTable table = getWordTable((String) value);
return table;