You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
818 B
37 lines
818 B
package com.fr.design.write.submit; |
|
|
|
import javax.swing.*; |
|
import java.awt.*; |
|
|
|
/** |
|
* Created with IntelliJ IDEA. |
|
* User: zheng |
|
* Date: 14-4-24 |
|
* Time: 上午10:09 |
|
*/ |
|
public class DBManipulationInWidgetEventPane extends DBManipulationPane { |
|
|
|
public DBManipulationInWidgetEventPane(){ |
|
super(); |
|
} |
|
|
|
protected void setBorderAndLayout(JPanel jPanel){ |
|
jPanel.setLayout(new FlowLayout(FlowLayout.LEFT)); |
|
} |
|
|
|
protected void addComponent(JPanel mainPane,JScrollPane addPane){ |
|
} |
|
|
|
protected Dimension createConditionPanePreferredSize(){ |
|
return new Dimension(454, 30); |
|
} |
|
|
|
protected Dimension createControlBtnPanePreferredSize(){ |
|
return new Dimension(92, 20); |
|
} |
|
|
|
protected String setControlBtnPanePosition(){ |
|
return BorderLayout.WEST; |
|
} |
|
|
|
} |