IDEMPIERE-3798:Move iDempiere default branch to openjdk 10 (swing api change)
This commit is contained in:
parent
5a03eeb696
commit
7c98168706
|
@ -40,7 +40,7 @@ public class AdempiereComboPopup extends BasicComboPopup
|
|||
* Constructor
|
||||
* @param combo
|
||||
*/
|
||||
public AdempiereComboPopup(JComboBox<?> combo)
|
||||
public AdempiereComboPopup(JComboBox<Object> combo)
|
||||
{
|
||||
super(combo);
|
||||
} // AdempiereComboPopup
|
||||
|
|
|
@ -302,7 +302,7 @@ public class VStatementCreateFromBatch extends StatementCreateFromBatch implemen
|
|||
m_frame.getGridTab()));
|
||||
}
|
||||
|
||||
protected void loadTableOIS (Vector<?> data)
|
||||
protected void loadTableOIS (Vector<? extends Vector> data)
|
||||
{
|
||||
// Remove previous listeners
|
||||
form.getMiniTable().getModel().removeTableModelListener(form);
|
||||
|
|
|
@ -306,7 +306,7 @@ public class VCreateFromDepositBatchUI extends CreateFromDepositBatch implements
|
|||
documentTypeField.getValue(), tenderTypeField.getValue(), authorizationField.getText()));
|
||||
}
|
||||
|
||||
protected void loadTableOIS (Vector<?> data)
|
||||
protected void loadTableOIS (Vector<? extends Vector> data)
|
||||
{
|
||||
// Remove previous listeners
|
||||
dialog.getMiniTable().getModel().removeTableModelListener(dialog);
|
||||
|
|
|
@ -360,7 +360,7 @@ public class VCreateFromInvoiceUI extends CreateFromInvoice implements ActionLis
|
|||
* Load Order/Invoice/Shipment data into Table
|
||||
* @param data data
|
||||
*/
|
||||
protected void loadTableOIS (Vector<?> data)
|
||||
protected void loadTableOIS (Vector<? extends Vector> data)
|
||||
{
|
||||
// Remove previous listeners
|
||||
dialog.getMiniTable().getModel().removeTableModelListener(dialog);
|
||||
|
|
|
@ -80,7 +80,7 @@ public class VCreateFromPackageShipmentUI extends CreateFromPackageShipment
|
|||
return true;
|
||||
}
|
||||
|
||||
protected void loadTableOIS (Vector<?> data)
|
||||
protected void loadTableOIS (Vector<? extends Vector> data)
|
||||
{
|
||||
// Remove previous listeners
|
||||
dialog.getMiniTable().getModel().removeTableModelListener(dialog);
|
||||
|
|
|
@ -172,7 +172,7 @@ public class VCreateFromRMAUI extends CreateFromRMA implements VetoableChangeLis
|
|||
* Load Order/Invoice/Shipment data into Table
|
||||
* @param data data
|
||||
*/
|
||||
protected void loadTableOIS (Vector<?> data)
|
||||
protected void loadTableOIS (Vector<? extends Vector> data)
|
||||
{
|
||||
// Remove previous listeners
|
||||
dialog.getMiniTable().getModel().removeTableModelListener(dialog);
|
||||
|
|
|
@ -423,7 +423,7 @@ public class VCreateFromShipmentUI extends CreateFromShipment implements ActionL
|
|||
* Load Order/Invoice/Shipment data into Table
|
||||
* @param data data
|
||||
*/
|
||||
protected void loadTableOIS (Vector<?> data)
|
||||
protected void loadTableOIS (Vector<? extends Vector> data)
|
||||
{
|
||||
// Remove previous listeners
|
||||
dialog.getMiniTable().getModel().removeTableModelListener(dialog);
|
||||
|
|
|
@ -304,7 +304,7 @@ public class VCreateFromStatementUI extends CreateFromStatement implements Actio
|
|||
documentTypeField.getValue(), tenderTypeField.getValue(), authorizationField.getText()));
|
||||
}
|
||||
|
||||
protected void loadTableOIS (Vector<?> data)
|
||||
protected void loadTableOIS (Vector<? extends Vector> data)
|
||||
{
|
||||
// Remove previous listeners
|
||||
dialog.getMiniTable().getModel().removeTableModelListener(dialog);
|
||||
|
|
|
@ -39,7 +39,7 @@ public class CompiereComboPopup extends BasicComboPopup
|
|||
* Constructor
|
||||
* @param combo
|
||||
*/
|
||||
public CompiereComboPopup(JComboBox<?> combo)
|
||||
public CompiereComboPopup(JComboBox<Object> combo)
|
||||
{
|
||||
super(combo);
|
||||
} // AdempiereComboPopup
|
||||
|
|
Loading…
Reference in New Issue