Package org.gdbms.engine.data

Examples of org.gdbms.engine.data.EditionListenerCounter


    private void testMetadataEditionListenerTest(String dsName, String type)
            throws Exception {
        DataSource d = ds.getDataSource(dsName);

        d.beginTrans();
        EditionListenerCounter elc = new EditionListenerCounter();
        d.addMetadataEditionListener(elc);
        d.removeField(1);
        d.addField("nuevo", type);
        d.setFieldName(1, "jjjj");
        assertTrue(elc.fieldDeletions == 1);
View Full Code Here

TOP

Related Classes of org.gdbms.engine.data.EditionListenerCounter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.