INTEGRATION: CWS jsc18 (1.4.16); FILE MERGED

2007/07/27 12:45:06 sg 1.4.16.1: #i78746# removed deprecated methods
This commit is contained in:
Jens-Heiner Rechtien 2007-07-31 12:57:37 +00:00
parent 477639ee27
commit 8a04e1701b
2 changed files with 6 additions and 8 deletions

View file

@ -2,9 +2,9 @@
*
* $RCSfile: MethodParametersDialog.java,v $
*
* $Revision: 1.4 $
* $Revision: 1.5 $
*
* last change: $Author: rt $ $Date: 2007-04-04 09:19:35 $
* last change: $Author: hr $ $Date: 2007-07-31 13:57:21 $
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
@ -89,7 +89,6 @@ public class MethodParametersDialog extends JDialog{
public Vector getMethodObjects() {
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
super.setModal(true);
addBorderPanel(getContentPane(), BorderLayout.NORTH);
addBorderPanel(getContentPane(), BorderLayout.WEST);
@ -116,7 +115,7 @@ public class MethodParametersDialog extends JDialog{
super.setFocusableWindowState(true);
super.requestFocus();
m_aParameterPanels[0].getInputComponent().requestFocusInWindow();
show();
setVisible(true);
if (!bisdiposed){
Vector aMethodObjects = new Vector();
for (int i = 0; i < m_aParameterPanels.length; i++){

View file

@ -2,9 +2,9 @@
*
* $RCSfile: SwingDialogProvider.java,v $
*
* $Revision: 1.4 $
* $Revision: 1.5 $
*
* last change: $Author: rt $ $Date: 2007-04-04 09:20:50 $
* last change: $Author: hr $ $Date: 2007-07-31 13:57:37 $
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
@ -83,7 +83,6 @@ public class SwingDialogProvider implements XDialogProvider{
m_xComponentContext = _oInspector.getXComponentContext();
insertMenus();
initializePopupMenu();
m_jInspectorDialog.setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
cp = m_jInspectorDialog.getContentPane();
cp.setLayout(new java.awt.BorderLayout(0, 10));
m_jTabbedPane1.setTabLayoutPolicy(JTabbedPane.SCROLL_TAB_LAYOUT);
@ -433,7 +432,7 @@ public class SwingDialogProvider implements XDialogProvider{
m_jInspectorDialog.pack();
}
// m_jInspectorDialog.paint(m_jInspectorDialog.getGraphics());
m_jInspectorDialog.show();
m_jInspectorDialog.setVisible(true);
}
public void paint(){