Skip to content

Instantly share code, notes, and snippets.

View ggalmazor's full-sized avatar
🏠
Working from home

Guillermo Gutiérrez ggalmazor

🏠
Working from home
View GitHub Profile
@ggalmazor
ggalmazor / ExportPanelForm.java
Last active March 20, 2018 06:25
Indirection without abstraction - Snippet 1
public class ExportPanelForm {
private JLabel exportingLabel;
public void updateExportingLabel() {
String text = exportingLabel.getText();
if (text.equals("Exporting..........")) {
text = "Exporting.";
} else {
text += ".";
}