Remove useless method in interfaces.
This commit is contained in:
parent
23341f1499
commit
9e8457337e
@ -338,11 +338,13 @@ public class MainWindow extends JFrame {
|
|||||||
|
|
||||||
setJMenuBar(createMenuBar(openMapActionListener));
|
setJMenuBar(createMenuBar(openMapActionListener));
|
||||||
|
|
||||||
|
// Initial panel to show "Open Map... "
|
||||||
JPanel openPanel = new JPanel();
|
JPanel openPanel = new JPanel();
|
||||||
openPanel.setLayout(new BoxLayout(openPanel, BoxLayout.PAGE_AXIS));
|
openPanel.setLayout(new BoxLayout(openPanel, BoxLayout.PAGE_AXIS));
|
||||||
JButton openButton = new JButton("Open Map... ");
|
JButton openButton = new JButton("Open Map... ");
|
||||||
openButton.setAlignmentX(Component.CENTER_ALIGNMENT);
|
openButton.setAlignmentX(Component.CENTER_ALIGNMENT);
|
||||||
openButton.addActionListener(openMapActionListener);
|
openButton.addActionListener(openMapActionListener);
|
||||||
|
openButton.setFocusPainted(false);
|
||||||
openPanel.add(Box.createVerticalGlue());
|
openPanel.add(Box.createVerticalGlue());
|
||||||
openPanel.add(openButton);
|
openPanel.add(openButton);
|
||||||
openPanel.add(Box.createVerticalGlue());
|
openPanel.add(Box.createVerticalGlue());
|
||||||
|
@ -13,16 +13,6 @@ public class BasicGraphPalette implements GraphPalette {
|
|||||||
private static final Color SMALL_ROAD_COLOR = new Color(255, 234, 0);
|
private static final Color SMALL_ROAD_COLOR = new Color(255, 234, 0);
|
||||||
private static final Color COASTLINE_COLOR = Color.BLUE;
|
private static final Color COASTLINE_COLOR = Color.BLUE;
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getDefaultPointWidth() {
|
|
||||||
return 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Color getDefaultPointColor() {
|
|
||||||
return Color.GREEN;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Color getColorForArc(Arc arc) {
|
public Color getColorForArc(Arc arc) {
|
||||||
RoadType type = arc.getRoadInformation().getType();
|
RoadType type = arc.getRoadInformation().getType();
|
||||||
|
@ -10,11 +10,6 @@ public class BlackAndWhiteGraphPalette extends BasicGraphPalette {
|
|||||||
private final static Color[] ROAD_COLOR_FROM_WIDTH = { null, new Color(140, 140, 140),
|
private final static Color[] ROAD_COLOR_FROM_WIDTH = { null, new Color(140, 140, 140),
|
||||||
new Color(80, 80, 80), new Color(40, 40, 40), new Color(30, 30, 30) };
|
new Color(80, 80, 80), new Color(40, 40, 40), new Color(30, 30, 30) };
|
||||||
|
|
||||||
@Override
|
|
||||||
public Color getDefaultPointColor() {
|
|
||||||
return Color.BLACK;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Color getColorForArc(Arc arc) {
|
public Color getColorForArc(Arc arc) {
|
||||||
int width = getWidthForArc(arc);
|
int width = getWidthForArc(arc);
|
||||||
|
@ -6,16 +6,6 @@ import org.insa.graph.Arc;
|
|||||||
|
|
||||||
public interface GraphPalette {
|
public interface GraphPalette {
|
||||||
|
|
||||||
/**
|
|
||||||
* @return The default point width for this palette.
|
|
||||||
*/
|
|
||||||
public int getDefaultPointWidth();
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return The default point color for this palette.
|
|
||||||
*/
|
|
||||||
public Color getDefaultPointColor();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param arc Arc for which color should be retrieved.
|
* @param arc Arc for which color should be retrieved.
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user