Готовая лабораторная работа 5

This commit is contained in:
Никита Белянин 2023-11-30 21:56:47 +04:00
parent 1f88f2883e
commit 397c4068b8
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ public class DrawingWheelsCombination implements IOrnamentForm {
g.fillRect(_startPosX + 27, _startPosY + 50, 10, 3);
}
public void DrawWheels(Graphics g, int _startPosX, int _startPosY) {
public void DrawWheels(Graphics g, int _startPosX, int _startPosY){
g.setColor(Color.BLACK);
g.fillOval(10 + _startPosX, 42 + _startPosY, 20, 20);
}

View File

@ -82,7 +82,7 @@ public class FormTankConfig {
}
// Для передвижения wheels по формочке
private class WheelTransferable implements Transferable {
private class WheelTransferable implements Transferable {
private IOrnamentForm wheelDrawing;
private static final DataFlavor wheelDrawingDataFlavor = new DataFlavor(IOrnamentForm.class, "Wheel Drawing");
public WheelTransferable(IOrnamentForm wheelDrawing) { this.wheelDrawing = wheelDrawing; }