import java.awt.*;

public class Grade
{
	void Grade(){}

	public void Controi(GridBagConstraints gbc, int gx, int gy, int gw, int gh, int wx, int wy, int fill, int anchor)
	{
		gbc.gridx = gx;
		gbc.gridy = gy;
		gbc.gridwidth = gw;
		gbc.gridheight = gh;
		gbc.weightx = wx;
		gbc.weighty = wy;
		gbc.fill = fill;
		gbc.anchor = anchor;
	}
}