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 Square {
- // св-ва
- int x; // точка в который будет находиться наша фигура
- int y;
- //
- int a; // длина стороны квадрата
- // св-во отвечает за цвет фигуры (квадрата)
- Color color;
- // конструктор класса
- public Square(int x1, int y1, int a1){
- x = x1;
- y = y1;
- a = a1;
- }
- // конструктор класса
- public Square(int x1, int y1, int a1, Color color1){
- x = x1;
- y = y1;
- a = a1;
- color = color1;
- }
- // методы
- // Alt + Insert
- public int getX() {
- return x;
- }
- public int getY() {
- return y;
- }
- public int getA() {
- return a;
- }
- // set-методы
- public void setX(int x) {
- this.x = x;
- }
- public void setY(int y) {
- this.y = y;
- }
- // Alt + Insert
- public Color getColor() {
- return color;
- }
- public void setColor(Color color) {
- this.color = color;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement