Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package javaapplication21;
- import java.awt.Color;
- public class Line {
- int x1; // (x1,y1) - первая точка
- int y1;
- int x2; // (x2,y2) - вторая точка
- int y2;
- Color color;
- // Alt+Insert
- public Line(int x1, int y1, int x2, int y2, Color color) {
- this.x1 = x1;
- this.y1 = y1;
- this.x2 = x2;
- this.y2 = y2;
- this.color = color;
- }
- //
- public int getX1() {
- return x1;
- }
- public void setX1(int x1) {
- this.x1 = x1;
- }
- public int getY1() {
- return y1;
- }
- public void setY1(int y1) {
- this.y1 = y1;
- }
- public int getX2() {
- return x2;
- }
- public void setX2(int x2) {
- this.x2 = x2;
- }
- public int getY2() {
- return y2;
- }
- public void setY2(int y2) {
- this.y2 = y2;
- }
- public Color getColor() {
- return color;
- }
- public void setColor(Color color) {
- this.color = color;
- }
- }
- /*
- 1) Создать класс Line, который описывает отрезок на плоскости
- Класс должен содержать четыре свойства - для указания первой и
- второй точек данного отрезка.
- Все свойства должны быть значениями типа int.
- Определить get и set методы в классе Line для получения значений свойств.
- Определить конструктор класса Line с параметрами.
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement