import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class LeftRightButton3 extends JPanel {
	private int x = 20;

	public LeftRightButton3() {
		setPreferredSize(new Dimension(200, 70));
		JButton lBtn = new JButton("Left");
		JButton rBtn = new JButton("Right");
		lBtn.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				x -= 10;
				repaint();
			}
		});
		rBtn.addActionListener(new ActionListener() {
			public void actionPerformed(ActionEvent e) {
				x += 10;
				repaint();
			}
		});
		setLayout(new FlowLayout());
		add(lBtn); add(rBtn);
	}

	@Override
	public void paintComponent(Graphics g) {
		super.paintComponent(g);
		g.drawString("HELLO WORLD!", x, 55);
	}

	public static void main(String[] args) {
		SwingUtilities.invokeLater(() -> {
			JFrame frame = new JFrame("ƒ{ƒ^ƒ“");
			frame.add(new LeftRightButton3());
			frame.pack();
			frame.setVisible(true);
			frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
		});
	}
}
