Skip to content
Snippets Groups Projects
Commit dc86ad63 authored by PIQUEREZ Corentin's avatar PIQUEREZ Corentin
Browse files

add ShukanViewBar.java

add images
parent 68a474ec
No related branches found
No related tags found
No related merge requests found
1
220708
3
230411
No preview for this file type
1
220708
3
230411
package shukan;
import javax.swing.*;
import java.awt.*;
public class ShukanViewBar extends JPanel {
/** File manager */
private ShukanIO myIO = null;
/** Displayed data */
private ShukanData data = null;
public ShukanViewBar(ShukanIO myIO, ShukanData data){
this.myIO = myIO;
this.data = data;
}
@Override
public void paintComponents(Graphics g) {
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment