use of org.jaxdb.www.ddlx_0_5.xLygluGCXAA.$Integer in project jaxdb by jaxdb.
the class OracleCompiler method triggers.
@Override
List<CreateStatement> triggers(final $Table table) {
final List<CreateStatement> statements = new ArrayList<>();
if (table.getColumn() != null) {
for (final $Column column : table.getColumn()) {
if (column instanceof $Integer) {
final $Integer type = ($Integer) column;
if (Generator.isAuto(type)) {
final String sequenceName = getSequenceName(table, type);
final String columnName = q(column.getName$().text());
statements.add(0, new CreateStatement("CREATE TRIGGER " + q(getTriggerName(table, type)) + " BEFORE INSERT ON " + q(table.getName$().text()) + " FOR EACH ROW WHEN (new." + columnName + " IS NULL) BEGIN SELECT " + q(sequenceName) + ".NEXTVAL INTO " + ":new." + columnName + " FROM dual; END;"));
}
}
}
}
statements.addAll(super.triggers(table));
return statements;
}
use of org.jaxdb.www.ddlx_0_5.xLygluGCXAA.$Integer in project jaxdb by jaxdb.
the class OracleCompiler method types.
@Override
List<CreateStatement> types(final $Table table, final Map<String, Map<String, String>> tableNameToEnumToOwner) {
final List<CreateStatement> statements = new ArrayList<>();
if (table.getColumn() != null) {
for (final $Column column : table.getColumn()) {
if (column instanceof $Integer) {
final $Integer integer = ($Integer) column;
if (Generator.isAuto(integer)) {
final StringBuilder builder = new StringBuilder();
builder.append("CREATE SEQUENCE ").append(q(getSequenceName(table, integer)));
builder.append(" INCREMENT BY 1");
final String startWith = getAttr("default", integer);
if (startWith != null)
builder.append(" START WITH ").append(startWith);
final String max = getAttr("max", integer);
final Byte precision;
builder.append(" MAXVALUE ");
builder.append(max != null ? max : (precision = getPrecision(integer)) != null ? FastMath.longE10[precision] : Long.MAX_VALUE);
String min = getAttr("min", integer);
if (min == null)
min = startWith;
if (min != null)
builder.append(" MINVALUE ").append(min);
else
builder.append(" NOMINVALUE ");
builder.append(" CYCLE NOCACHE");
statements.add(0, new CreateStatement(builder.toString()));
}
}
}
}
statements.addAll(super.types(table, tableNameToEnumToOwner));
return statements;
}
use of org.jaxdb.www.ddlx_0_5.xLygluGCXAA.$Integer in project jaxdb by jaxdb.
the class PostgreSQLCompiler method types.
@Override
List<CreateStatement> types(final $Table table, final Map<String, Map<String, String>> tableNameToEnumToOwner) {
final List<CreateStatement> statements = new ArrayList<>();
if (table.getColumn() != null) {
StringBuilder sql = null;
for (final $Column column : table.getColumn()) {
if (column instanceof $Enum) {
final $Enum type = ($Enum) column;
if (sql == null)
sql = new StringBuilder();
else
sql.setLength(0);
sql.append("CREATE TYPE ").append(q(Dialect.getTypeName(type, tableNameToEnumToOwner))).append(" AS ENUM (");
if (type.getValues$() != null) {
final List<String> enums = Dialect.parseEnum(type.getValues$().text());
final Iterator<String> iterator = enums.iterator();
for (int i = 0; iterator.hasNext(); ++i) {
if (i > 0)
sql.append(", ");
sql.append('\'').append(iterator.next()).append('\'');
}
}
statements.add(0, new CreateStatement(sql.append(')').toString()));
} else if (column instanceof $Integer) {
final $Integer integer = ($Integer) column;
if (Generator.isAuto(integer)) {
final StringBuilder builder = new StringBuilder("CREATE SEQUENCE " + q(getSequenceName(table, integer)));
final String min = getAttr("min", integer);
if (min != null)
builder.append(" MINVALUE ").append(min);
final String max = getAttr("max", integer);
if (max != null)
builder.append(" MAXVALUE ").append(max);
final String _default = getAttr("default", integer);
if (_default != null)
builder.append(" START ").append(_default);
builder.append(" CYCLE");
statements.add(0, new CreateStatement(builder.toString()));
}
}
}
}
statements.addAll(super.types(table, tableNameToEnumToOwner));
return statements;
}
use of org.jaxdb.www.ddlx_0_5.xLygluGCXAA.$Integer in project jaxdb by jaxdb.
the class SQLiteCompiler method $autoIncrement.
@Override
String $autoIncrement(final LinkedHashSet<CreateStatement> alterStatements, final $Table table, final $Integer column) {
if (!Generator.isAuto(column))
return null;
final $Columns primaryKey;
if (table.getConstraints() == null || (primaryKey = table.getConstraints().getPrimaryKey()) == null) {
if (logger.isWarnEnabled())
logger.warn("AUTO_INCREMENT is only allowed on an INT PRIMARY KEY -- Ignoring AUTO_INCREMENT spec.");
return null;
}
if (primaryKey.getColumn().size() > 1) {
if (logger.isWarnEnabled())
logger.warn("AUTO_INCREMENT is not allowed for tables with composite primary keys -- Ignoring AUTO_INCREMENT spec.");
return null;
}
for (final $Named primaryColumn : primaryKey.getColumn()) {
if (primaryColumn.getName$().text().equals(column.getName$().text())) {
final String min = getAttr("min", column);
if (min != null && logger.isWarnEnabled())
logger.warn("AUTO_INCREMENT does not consider min=\"" + min + "\" -- Ignoring min spec.");
final String max = getAttr("max", column);
if (max != null && logger.isWarnEnabled())
logger.warn("AUTO_INCREMENT does not consider max=\"" + max + "\" -- Ignoring max spec.");
final String _default = getAttr("default", column);
if (_default != null && logger.isWarnEnabled())
logger.warn("AUTO_INCREMENT does not consider default=\"" + _default + "\" -- Ignoring default spec.");
return "PRIMARY KEY";
}
}
if (logger.isWarnEnabled())
logger.warn("AUTO_INCREMENT is only allowed on an INT PRIMARY KEY -- Ignoring AUTO_INCREMENT spec.");
return null;
}
use of org.jaxdb.www.ddlx_0_5.xLygluGCXAA.$Integer in project jaxdb by jaxdb.
the class Generator method getColumnMeta.
private ColumnMeta getColumnMeta(final Table table, final $Column column) throws GeneratorExecutionException {
final String columnName = column.getName$().text();
boolean isKeyForUpdate = false;
// FIXME: Make efficient
if (table.getJsqlKeyForUpdate() != null)
for (final xLygluGCXAA.$Named col : table.getJsqlKeyForUpdate().getColumn()) if (isKeyForUpdate = columnName.equals(col.getName$().text()))
break;
final Class<?> cls = column.getClass().getSuperclass();
GenerateOn<?> generateOnInsert = null;
GenerateOn<?> generateOnUpdate = null;
final boolean isPrimary = ddlx.isPrimary(table, column);
final Object[] commonParams = { THIS, MUTABLE, "\"" + column.getName$().text() + "\"", ddlx.isUnique(table, column), isPrimary, isNull(column) };
if (column instanceof $Char) {
final $Char col = ($Char) column;
if (col.getSqlxGenerateOnInsert$() != null) {
if ($Char.GenerateOnInsert$.UUID.text().equals(col.getSqlxGenerateOnInsert$().text()))
generateOnInsert = GenerateOn.UUID;
else
throw new GeneratorExecutionException("Unknown generateOnInsert specification: " + col.getSqlxGenerateOnInsert$().text());
}
return new ColumnMeta(table, column, isPrimary, data.CHAR.class, commonParams, col.getDefault$() == null ? null : col.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate, col.getLength$() == null ? null : col.getLength$().text(), isVarying(col.getVarying$()));
}
if (column instanceof $Clob) {
final $Clob col = ($Clob) column;
return new ColumnMeta(table, column, isPrimary, data.CLOB.class, commonParams, null, generateOnInsert, generateOnUpdate, isKeyForUpdate, col.getLength$() == null ? null : col.getLength$().text());
}
if (column instanceof $Binary) {
final $Binary col = ($Binary) column;
return new ColumnMeta(table, column, isPrimary, data.BINARY.class, commonParams, col.getDefault$() == null ? null : col.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate, col.getLength$() == null ? null : col.getLength$().text(), isVarying(col.getVarying$()));
}
if (column instanceof $Blob) {
final $Blob col = ($Blob) column;
return new ColumnMeta(table, column, isPrimary, data.BLOB.class, commonParams, null, generateOnInsert, generateOnUpdate, isKeyForUpdate, col.getLength$() == null ? null : col.getLength$().text());
}
if (column instanceof $Integer) {
final $Integer integerColumn = ($Integer) column;
if (integerColumn.getGenerateOnInsert$() != null) {
if ($Integer.GenerateOnInsert$.AUTO_5FINCREMENT.text().equals(integerColumn.getGenerateOnInsert$().text())) {
generateOnInsert = GenerateOn.AUTO_GENERATED;
} else {
throw new GeneratorExecutionException("Unknown generateOnInsert specification: " + integerColumn.getGenerateOnInsert$().text());
}
}
if (column instanceof $Tinyint) {
final $Tinyint integer = ($Tinyint) column;
if (integer.getSqlxGenerateOnUpdate$() != null) {
if ($Tinyint.GenerateOnUpdate$.INCREMENT.text().equals(integer.getSqlxGenerateOnUpdate$().text())) {
if (isPrimary)
throw new GeneratorExecutionException("Primary column \"" + table.getName$().text() + "." + column.getName$().text() + "\" cannot specify generateOnUpdate");
generateOnUpdate = GenerateOn.INCREMENT;
} else {
throw new GeneratorExecutionException("Unknown generateOnUpdate specification: " + integer.getSqlxGenerateOnUpdate$().text());
}
}
return new ColumnMeta(table, column, isPrimary, data.TINYINT.class, commonParams, integer.getDefault$() == null ? null : integer.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate, integer.getPrecision$() == null ? null : integer.getPrecision$().text().intValue(), integer.getMin$() == null ? null : integer.getMin$().text(), integer.getMax$() == null ? null : integer.getMax$().text());
}
if (column instanceof $Smallint) {
final $Smallint integer = ($Smallint) column;
if (integer.getSqlxGenerateOnUpdate$() != null) {
if ($Smallint.GenerateOnUpdate$.INCREMENT.text().equals(integer.getSqlxGenerateOnUpdate$().text())) {
if (isPrimary)
throw new GeneratorExecutionException("Primary column \"" + table.getName$().text() + "." + column.getName$().text() + "\" cannot specify generateOnUpdate");
generateOnUpdate = GenerateOn.INCREMENT;
} else {
throw new GeneratorExecutionException("Unknown generateOnUpdate specification: " + integer.getSqlxGenerateOnUpdate$().text());
}
}
return new ColumnMeta(table, column, isPrimary, data.SMALLINT.class, commonParams, integer.getDefault$() == null ? null : integer.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate, integer.getPrecision$() == null ? null : integer.getPrecision$().text().intValue(), integer.getMin$() == null ? null : integer.getMin$().text(), integer.getMax$() == null ? null : integer.getMax$().text());
}
if (column instanceof $Int) {
final $Int integer = ($Int) column;
if (integer.getSqlxGenerateOnInsert$() != null) {
if (generateOnInsert != null)
throw new GeneratorExecutionException("ddlx:generateOnInsert and sqlx:generateOnInsert are mutually exclusive");
if ($Int.GenerateOnInsert$.EPOCH_5FMINUTES.text().equals(integer.getSqlxGenerateOnInsert$().text())) {
if (integer.getPrecision$().text() != null && integer.getPrecision$().text() < 8)
throw new GeneratorExecutionException("INT(" + integer.getPrecision$().text() + ") requires minimum precision of 8 for EPOCH_MINUTES");
generateOnInsert = GenerateOn.EPOCH_MINUTES;
} else if ($Int.GenerateOnInsert$.EPOCH_5FSECONDS.text().equals(integer.getSqlxGenerateOnInsert$().text())) {
if (integer.getPrecision$().text() != null && integer.getPrecision$().text() < 10)
throw new GeneratorExecutionException("INT(" + integer.getPrecision$().text() + ") requires minimum precision of 10 for EPOCH_SECONDS");
generateOnInsert = GenerateOn.EPOCH_SECONDS;
} else {
throw new GeneratorExecutionException("Unknown generateOnInsert specification: " + integer.getSqlxGenerateOnInsert$().text());
}
}
if (integer.getSqlxGenerateOnUpdate$() != null) {
if (isPrimary)
throw new GeneratorExecutionException("Primary column \"" + table.getName$().text() + "." + column.getName$().text() + "\" cannot specify generateOnUpdate");
if ($Int.GenerateOnUpdate$.INCREMENT.text().equals(integer.getSqlxGenerateOnUpdate$().text())) {
generateOnUpdate = GenerateOn.INCREMENT;
} else if ($Int.GenerateOnUpdate$.EPOCH_5FMINUTES.text().equals(integer.getSqlxGenerateOnUpdate$().text())) {
if (integer.getPrecision$().text() != null && integer.getPrecision$().text() < 8)
throw new GeneratorExecutionException("INT(" + integer.getPrecision$().text() + ") requires minimum precision of 8 for EPOCH_MINUTES");
generateOnUpdate = GenerateOn.EPOCH_MINUTES;
} else if ($Int.GenerateOnUpdate$.EPOCH_5FSECONDS.text().equals(integer.getSqlxGenerateOnUpdate$().text())) {
if (integer.getPrecision$().text() != null && integer.getPrecision$().text() < 10)
throw new GeneratorExecutionException("INT(" + integer.getPrecision$().text() + ") requires minimum precision of 10 for EPOCH_SECONDS");
generateOnUpdate = GenerateOn.EPOCH_SECONDS;
} else {
throw new GeneratorExecutionException("Unknown generateOnUpdate specification: " + integer.getSqlxGenerateOnUpdate$().text());
}
}
return new ColumnMeta(table, column, isPrimary, data.INT.class, commonParams, integer.getDefault$() == null ? null : integer.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate, integer.getPrecision$() == null ? null : integer.getPrecision$().text().intValue(), integer.getMin$() == null ? null : integer.getMin$().text(), integer.getMax$() == null ? null : integer.getMax$().text());
}
if (column instanceof $Bigint) {
final $Bigint integer = ($Bigint) column;
if (integer.getSqlxGenerateOnInsert$() != null) {
if (generateOnInsert != null)
throw new GeneratorExecutionException("ddlx:generateOnInsert and sqlx:generateOnInsert are mutually exclusive");
if ($Bigint.GenerateOnInsert$.EPOCH_5FMINUTES.text().equals(integer.getSqlxGenerateOnInsert$().text())) {
if (integer.getPrecision$().text() != null && integer.getPrecision$().text() < 8)
throw new GeneratorExecutionException("BIGINT(" + integer.getPrecision$().text() + ") requires minimum precision of 8 for EPOCH_MINUTES");
generateOnInsert = GenerateOn.EPOCH_MINUTES;
} else if ($Bigint.GenerateOnInsert$.EPOCH_5FSECONDS.text().equals(integer.getSqlxGenerateOnInsert$().text())) {
if (integer.getPrecision$().text() != null && integer.getPrecision$().text() < 10)
throw new GeneratorExecutionException("BIGINT(" + integer.getPrecision$().text() + ") requires minimum precision of 10 for EPOCH_SECONDS");
generateOnInsert = GenerateOn.EPOCH_SECONDS;
} else if ($Bigint.GenerateOnInsert$.EPOCH_5FMILLIS.text().equals(integer.getSqlxGenerateOnInsert$().text())) {
if (integer.getPrecision$().text() != null && integer.getPrecision$().text() < 13)
throw new GeneratorExecutionException("BIGINT(" + integer.getPrecision$().text() + ") requires minimum precision of 13 for EPOCH_MILLIS");
generateOnInsert = GenerateOn.EPOCH_MILLIS;
} else {
throw new GeneratorExecutionException("Unknown generateOnInsert specification: " + integer.getSqlxGenerateOnInsert$().text());
}
}
if (integer.getSqlxGenerateOnUpdate$() != null) {
if (isPrimary)
throw new GeneratorExecutionException("Primary column \"" + table.getName$().text() + "." + column.getName$().text() + "\" cannot specify generateOnUpdate");
if ($Bigint.GenerateOnUpdate$.INCREMENT.text().equals(integer.getSqlxGenerateOnUpdate$().text())) {
generateOnUpdate = GenerateOn.INCREMENT;
} else if ($Bigint.GenerateOnUpdate$.EPOCH_5FMINUTES.text().equals(integer.getSqlxGenerateOnUpdate$().text())) {
if (integer.getPrecision$().text() != null && integer.getPrecision$().text() < 8)
throw new GeneratorExecutionException("BIGINT(" + integer.getPrecision$().text() + ") requires minimum precision of 8 for EPOCH_MINUTES");
generateOnUpdate = GenerateOn.EPOCH_MINUTES;
} else if ($Bigint.GenerateOnUpdate$.EPOCH_5FSECONDS.text().equals(integer.getSqlxGenerateOnUpdate$().text())) {
if (integer.getPrecision$().text() != null && integer.getPrecision$().text() < 10)
throw new GeneratorExecutionException("BIGINT(" + integer.getPrecision$().text() + ") requires minimum precision of 10 for EPOCH_SECONDS");
generateOnUpdate = GenerateOn.EPOCH_SECONDS;
} else if ($Bigint.GenerateOnUpdate$.EPOCH_5FMILLIS.text().equals(integer.getSqlxGenerateOnUpdate$().text())) {
if (integer.getPrecision$().text() != null && integer.getPrecision$().text() < 13)
throw new GeneratorExecutionException("BIGINT(" + integer.getPrecision$().text() + ") requires minimum precision of 13 for EPOCH_MILLIS");
generateOnUpdate = GenerateOn.EPOCH_MILLIS;
} else {
throw new GeneratorExecutionException("Unknown generateOnUpdate specification: " + integer.getSqlxGenerateOnUpdate$().text());
}
}
return new ColumnMeta(table, column, isPrimary, data.BIGINT.class, commonParams, integer.getDefault$() == null ? null : integer.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate, integer.getPrecision$() == null ? null : integer.getPrecision$().text().intValue(), integer.getMin$() == null ? null : integer.getMin$().text(), integer.getMax$() == null ? null : integer.getMax$().text());
}
}
if (column instanceof $Float) {
final $Float col = ($Float) column;
final Number min = col.getMin$() != null ? col.getMin$().text() : null;
final Number max = col.getMax$() != null ? col.getMax$().text() : null;
return new ColumnMeta(table, column, isPrimary, data.FLOAT.class, commonParams, col.getDefault$() == null ? null : col.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate, min, max);
}
if (column instanceof $Double) {
final $Double col = ($Double) column;
final Number min = col.getMin$() != null ? col.getMin$().text() : null;
final Number max = col.getMax$() != null ? col.getMax$().text() : null;
return new ColumnMeta(table, column, isPrimary, data.DOUBLE.class, commonParams, col.getDefault$() == null ? null : col.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate, min, max);
}
if (column instanceof $Decimal) {
final $Decimal col = ($Decimal) column;
return new ColumnMeta(table, column, isPrimary, data.DECIMAL.class, commonParams, col.getDefault$() == null ? null : col.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate, col.getPrecision$() == null ? null : col.getPrecision$().text().intValue(), col.getScale$() == null ? null : col.getScale$().text().intValue(), col.getMin$() == null ? null : col.getMin$().text(), col.getMax$() == null ? null : col.getMax$().text());
}
if (column instanceof $Date) {
final $Date col = ($Date) column;
if (col.getSqlxGenerateOnInsert$() != null) {
if ($Date.GenerateOnInsert$.TIMESTAMP.text().equals(col.getSqlxGenerateOnInsert$().text()))
generateOnInsert = GenerateOn.TIMESTAMP;
else
throw new GeneratorExecutionException("Unknown generateOnInsert specification: " + col.getSqlxGenerateOnInsert$().text());
}
if (col.getSqlxGenerateOnUpdate$() != null) {
if ($Date.GenerateOnUpdate$.TIMESTAMP.text().equals(col.getSqlxGenerateOnUpdate$().text())) {
if (isPrimary)
throw new GeneratorExecutionException("Primary column \"" + table.getName$().text() + "." + column.getName$().text() + "\" cannot specify generateOnUpdate");
generateOnUpdate = GenerateOn.TIMESTAMP;
} else {
throw new GeneratorExecutionException("Unknown generateOnUpdate specification: " + col.getSqlxGenerateOnUpdate$().text());
}
}
return new ColumnMeta(table, column, isPrimary, data.DATE.class, commonParams, col.getDefault$() == null ? null : col.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate);
}
if (column instanceof $Time) {
final $Time col = ($Time) column;
if (col.getSqlxGenerateOnInsert$() != null) {
if ($Time.GenerateOnInsert$.TIMESTAMP.text().equals(col.getSqlxGenerateOnInsert$().text()))
generateOnInsert = GenerateOn.TIMESTAMP;
else
throw new GeneratorExecutionException("Unknown generateOnInsert specification: " + col.getSqlxGenerateOnInsert$().text());
}
if (col.getSqlxGenerateOnUpdate$() != null) {
if ($Time.GenerateOnUpdate$.TIMESTAMP.text().equals(col.getSqlxGenerateOnUpdate$().text())) {
if (isPrimary)
throw new GeneratorExecutionException("Primary column \"" + table.getName$().text() + "." + column.getName$().text() + "\" cannot specify generateOnUpdate");
generateOnUpdate = GenerateOn.TIMESTAMP;
} else {
throw new GeneratorExecutionException("Unknown generateOnUpdate specification: " + col.getSqlxGenerateOnUpdate$().text());
}
}
return new ColumnMeta(table, column, isPrimary, data.TIME.class, commonParams, col.getDefault$() == null ? null : col.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate, col.getPrecision$() == null ? null : col.getPrecision$().text());
}
if (column instanceof $Datetime) {
final $Datetime col = ($Datetime) column;
if (col.getSqlxGenerateOnInsert$() != null) {
if ($Datetime.GenerateOnInsert$.TIMESTAMP.text().equals(col.getSqlxGenerateOnInsert$().text()))
generateOnInsert = GenerateOn.TIMESTAMP;
else
throw new GeneratorExecutionException("Unknown generateOnInsert specification: " + col.getSqlxGenerateOnInsert$().text());
}
if (col.getSqlxGenerateOnUpdate$() != null) {
if ($Datetime.GenerateOnUpdate$.TIMESTAMP.text().equals(col.getSqlxGenerateOnUpdate$().text())) {
if (isPrimary)
throw new GeneratorExecutionException("Primary column \"" + table.getName$().text() + "." + column.getName$().text() + "\" cannot specify generateOnUpdate");
generateOnUpdate = GenerateOn.TIMESTAMP;
} else {
throw new GeneratorExecutionException("Unknown generateOnUpdate specification: " + col.getSqlxGenerateOnUpdate$().text());
}
}
return new ColumnMeta(table, column, isPrimary, data.DATETIME.class, commonParams, col.getDefault$() == null ? null : col.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate, col.getPrecision$() == null ? null : col.getPrecision$().text());
}
if (column instanceof $Boolean) {
final $Boolean col = ($Boolean) column;
return new ColumnMeta(table, column, isPrimary, data.BOOLEAN.class, commonParams, col.getDefault$() == null ? null : col.getDefault$().text(), generateOnInsert, generateOnUpdate, isKeyForUpdate);
}
if (column instanceof $Enum) {
final $Enum col = ($Enum) column;
return new ColumnMeta(table, column, isPrimary, data.ENUM.class, commonParams, col.getDefault$() == null ? null : getClassNameOfEnum(table, col).append('.').append(enumStringToEnum(col.getDefault$().text())), generateOnInsert, generateOnUpdate, isKeyForUpdate);
}
throw new IllegalArgumentException("Unknown class: " + cls);
}
Aggregations