Java Code Examples for net.miginfocom.swing.MigLayout#getComponentConstraints()

The following examples show how to use net.miginfocom.swing.MigLayout#getComponentConstraints() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: EntityPane.java    From OpERP with MIT License 5 votes vote down vote up
protected JPanel setBtnPanel(JPanel btnPanel, JPanel tobeReplaced) {

		MigLayout layout = (MigLayout) getPane().getLayout();
		Object opBtnPanelconstraints = layout
				.getComponentConstraints(tobeReplaced);
		getPane().remove(tobeReplaced);
		getPane().add(btnPanel, opBtnPanelconstraints);
		return btnPanel;
	}
 
Example 2
Source File: ContactInfoPane.java    From OpERP with MIT License 5 votes vote down vote up
public void setAddressPanel(JPanel addressPanel) {
	MigLayout layout = (MigLayout) pane.getLayout();
	Object constraints = layout.getComponentConstraints(this.addressPanel);

	pane.remove(this.addressPanel);
	pane.add(addressPanel, constraints);
	this.addressPanel = addressPanel;
	pane.validate();
}
 
Example 3
Source File: VendorPane.java    From OpERP with MIT License 5 votes vote down vote up
public void setContactInfopanel(JPanel contactInfoPanel) {
	MigLayout layout = (MigLayout) pane.getLayout();
	Object constraints = layout
			.getComponentConstraints(this.contactInfoPanel);

	pane.remove(this.contactInfoPanel);
	pane.add(contactInfoPanel, constraints);
	this.contactInfoPanel = contactInfoPanel;
	pane.validate();
}
 
Example 4
Source File: CustomerPane.java    From OpERP with MIT License 5 votes vote down vote up
public void setContactInfopanel(JPanel contactInfoPanel) {
	MigLayout layout = (MigLayout) pane.getLayout();
	Object constraints = layout
			.getComponentConstraints(this.contactInfoPanel);

	pane.remove(this.contactInfoPanel);
	pane.add(contactInfoPanel, constraints);
	this.contactInfoPanel = contactInfoPanel;
	pane.validate();
}
 
Example 5
Source File: SalePane.java    From OpERP with MIT License 5 votes vote down vote up
public void setSaleDescpanel(JPanel saleDescPanel) {
	MigLayout layout = (MigLayout) pane.getLayout();
	Object constraints = layout.getComponentConstraints(this.saleDescPanel);

	pane.remove(this.saleDescPanel);
	pane.add(saleDescPanel, constraints);
	this.saleDescPanel = saleDescPanel;
	pane.validate();
}
 
Example 6
Source File: SaleDescPane.java    From OpERP with MIT License 5 votes vote down vote up
public void setSaleDescRowpanel(JPanel rowDescPanel) {
	MigLayout layout = (MigLayout) pane.getLayout();
	Object constraints = layout.getComponentConstraints(this.rowDescPanel);

	pane.remove(this.rowDescPanel);
	pane.add(rowDescPanel, constraints);
	this.rowDescPanel = rowDescPanel;
	pane.validate();
}
 
Example 7
Source File: PurchasePane.java    From OpERP with MIT License 5 votes vote down vote up
public void setPurchaseDescpanel(JPanel saleDescPanel) {
	MigLayout layout = (MigLayout) pane.getLayout();
	Object constraints = layout.getComponentConstraints(this.saleDescPanel);

	pane.remove(this.saleDescPanel);
	pane.add(saleDescPanel, constraints);
	this.saleDescPanel = saleDescPanel;
	pane.validate();
}
 
Example 8
Source File: PurchaseDescPane.java    From OpERP with MIT License 5 votes vote down vote up
public void setPurchaseDescRowpanel(JPanel rowDescPanel) {
	MigLayout layout = (MigLayout) pane.getLayout();
	Object constraints = layout.getComponentConstraints(this.rowDescPanel);

	pane.remove(this.rowDescPanel);
	pane.add(rowDescPanel, constraints);
	this.rowDescPanel = rowDescPanel;
	pane.validate();
}
 
Example 9
Source File: EmployeePane.java    From OpERP with MIT License 5 votes vote down vote up
public void setContactInfopanel(JPanel contactInfoPanel) {
	MigLayout layout = (MigLayout) pane.getLayout();
	Object constraints = layout
			.getComponentConstraints(this.contactInfoPanel);

	pane.remove(this.contactInfoPanel);
	pane.add(contactInfoPanel, constraints);
	this.contactInfoPanel = contactInfoPanel;
	pane.validate();
}