1 package com.atlassian.dbexporter.importer;
2
3 import com.atlassian.dbexporter.DatabaseInformation;
4 import com.atlassian.dbexporter.EntityNameProcessor;
5 import com.atlassian.dbexporter.Table;
6 import com.atlassian.dbexporter.progress.ProgressMonitor;
7
8 public interface TableCreator {
9 void create(DatabaseInformation databaseInformation, Iterable<Table> tables, EntityNameProcessor entityNameProcessor, ProgressMonitor monitor);
10 }