mirror of
https://github.com/Wisser/Jailer.git
synced 2026-05-20 19:38:32 -05:00
organized imports
This commit is contained in:
@@ -1,5 +0,0 @@
|
||||
package net.sf.jailer.util;
|
||||
|
||||
public class ToDo {
|
||||
|
||||
}
|
||||
@@ -16,7 +16,6 @@
|
||||
package net.sf.jailer.ui;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Cursor;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.GridBagConstraints;
|
||||
import java.awt.Image;
|
||||
|
||||
@@ -17,7 +17,6 @@ package net.sf.jailer.ui;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Component;
|
||||
import java.awt.Cursor;
|
||||
import java.awt.Font;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.util.ArrayList;
|
||||
|
||||
@@ -50,7 +50,6 @@ import javax.swing.JMenuItem;
|
||||
import javax.swing.JOptionPane;
|
||||
import javax.swing.KeyStroke;
|
||||
import javax.swing.SwingUtilities;
|
||||
import javax.swing.ToolTipManager;
|
||||
import javax.swing.UIManager;
|
||||
import javax.swing.UIManager.LookAndFeelInfo;
|
||||
import javax.swing.WindowConstants;
|
||||
|
||||
@@ -17,7 +17,6 @@ package net.sf.jailer.ui;
|
||||
|
||||
import java.awt.Frame;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.sql.SQLException;
|
||||
import java.util.HashSet;
|
||||
import java.util.Set;
|
||||
import java.util.concurrent.atomic.AtomicReference;
|
||||
|
||||
@@ -92,7 +92,6 @@ import javax.swing.JTree;
|
||||
import javax.swing.JViewport;
|
||||
import javax.swing.KeyStroke;
|
||||
import javax.swing.SwingUtilities;
|
||||
import javax.swing.ToolTipManager;
|
||||
import javax.swing.UIManager;
|
||||
import javax.swing.UIManager.LookAndFeelInfo;
|
||||
import javax.swing.WindowConstants;
|
||||
|
||||
@@ -204,7 +204,6 @@ public class SbEDialog extends javax.swing.JDialog {
|
||||
}//GEN-LAST:event_jButton3ActionPerformed
|
||||
|
||||
private void regardButtonActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_regardButtonActionPerformed
|
||||
// TODO add your handling code here:
|
||||
}//GEN-LAST:event_regardButtonActionPerformed
|
||||
|
||||
// Variables declaration - do not modify//GEN-BEGIN:variables
|
||||
|
||||
@@ -15,7 +15,6 @@
|
||||
*/
|
||||
package net.sf.jailer.ui.databrowser;
|
||||
|
||||
import java.awt.Cursor;
|
||||
import java.awt.GridBagConstraints;
|
||||
import java.awt.Window;
|
||||
import java.io.File;
|
||||
|
||||
@@ -163,7 +163,6 @@ public class MDTable extends MDObject {
|
||||
synchronized (metaDataSource.getSession().getMetaData()) {
|
||||
ResultSet resultSet = JDBCMetaDataBasedModelElementFinder.getColumns(getSchema().getMetaDataSource().getSession(), getSchema().getMetaDataSource().getSession().getMetaData(), Quoting.staticUnquote(getSchema().getName()), Quoting.staticUnquote(getName()), "%",
|
||||
true, isSynonym? "SYNONYM" : null);
|
||||
// TODO test
|
||||
while (resultSet.next()) {
|
||||
String colName = metaDataSource.getQuoting().quote(resultSet.getString(4));
|
||||
columns.add(colName);
|
||||
|
||||
@@ -40,7 +40,6 @@ public enum MetaDataDetails {
|
||||
@Override
|
||||
public ResultSet readMetaDataDetails(Session session, MDTable mdTable) throws SQLException {
|
||||
return JDBCMetaDataBasedModelElementFinder.getColumns(session, session.getMetaData(), Quoting.staticUnquote(mdTable.getSchema().getName()), Quoting.staticUnquote(mdTable.getName()), "%", true, mdTable.isSynonym()? "SYNONYM" : null);
|
||||
// TODO test
|
||||
}
|
||||
@Override
|
||||
public void adjustRowsTable(JTable rowsTable) {
|
||||
|
||||
@@ -17,7 +17,6 @@ package net.sf.jailer.ui.databrowser.metadata;
|
||||
|
||||
import java.awt.Color;
|
||||
import java.awt.Component;
|
||||
import java.awt.Cursor;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.FlowLayout;
|
||||
import java.awt.Font;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
package net.sf.jailer.ui.graphical_view;
|
||||
|
||||
import java.awt.Cursor;
|
||||
import java.awt.Dimension;
|
||||
import java.awt.Graphics2D;
|
||||
import java.awt.GraphicsEnvironment;
|
||||
|
||||
@@ -22,13 +22,10 @@ import java.awt.Toolkit;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
import javax.swing.JFrame;
|
||||
|
||||
import org.fife.rsta.ui.EscapableDialog;
|
||||
|
||||
import net.sf.jailer.datamodel.DataModel;
|
||||
import net.sf.jailer.datamodel.Table;
|
||||
import net.sf.jailer.extractionmodel.ExtractionModel;
|
||||
import net.sf.jailer.ui.UIUtil;
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user