com.dua3.meja.ui.swing.SwingSheetPainter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of meja-swing Show documentation
Show all versions of meja-swing Show documentation
Meja spreadsheet library - swing tools
/*
*
*/
package com.dua3.meja.ui.swing;
import com.dua3.meja.ui.CellRenderer;
import com.dua3.meja.ui.SheetPainterBase;
import com.dua3.meja.ui.SheetViewDelegate;
public class SwingSheetPainter extends SheetPainterBase {
private final SwingSheetViewDelegate delegate;
SwingSheetPainter(SwingSheetViewDelegate svDelegate, CellRenderer cellRenderer) {
super(new CellRenderer(svDelegate));
this.delegate = svDelegate;
}
@Override
protected SheetViewDelegate getDelegate() {
return delegate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy