Package org.openengsb.core.edbi.api

Examples of org.openengsb.core.edbi.api.IndexFieldVisitor


            table.setName(getIndexNameTranslator().translate(index));
        }

        LOG.info("Creating table {} for index {}", table.getName(), index.getName());

        index.accept(new IndexFieldVisitor() {
            @Override
            public void visit(IndexField<?> field) {
                onBeforeFieldVisit(table, field);

                DataType type = getTypeMap().getType(field.getType());
View Full Code Here

TOP

Related Classes of org.openengsb.core.edbi.api.IndexFieldVisitor

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.