summaryrefslogtreecommitdiff
path: root/oop/09-polymorphism/Customer.java
diff options
context:
space:
mode:
authorKamal Wickramanayake <kamal@inbox.lk>2026-02-22 19:43:58 +0530
committerKamal Wickramanayake <kamal@inbox.lk>2026-02-22 19:43:58 +0530
commitbaaba4a281b7d54e6b5d7767989c303b854b6932 (patch)
tree16201b64e9c8f20d7fa394c715f4ca5df51e9e08 /oop/09-polymorphism/Customer.java
parentae4cf7c9f0a0b90d02166b43402e67b7d4ad4dca (diff)
Directory rename
Diffstat (limited to 'oop/09-polymorphism/Customer.java')
-rw-r--r--oop/09-polymorphism/Customer.java60
1 files changed, 0 insertions, 60 deletions
diff --git a/oop/09-polymorphism/Customer.java b/oop/09-polymorphism/Customer.java
deleted file mode 100644
index 56b0f7b..0000000
--- a/oop/09-polymorphism/Customer.java
+++ /dev/null
@@ -1,60 +0,0 @@
-public class Customer {
- private int customerNumber;
- private String name;
- private String address;
- private String phone;
- private String mobile;
-
- public Customer() {
- }
-
- public Customer(int customerNumber, String name, String address,
- String phone, String mobile) {
- this.customerNumber = customerNumber;
- this.name = name;
- this.address = address;
- this.phone = phone;
- this.mobile = mobile;
- }
-
- public int getCustomerNumber() {
- return customerNumber;
- }
-
- public void setCustomerNumber(int customerNumber) {
- this.customerNumber = customerNumber;
- }
-
- public String getName() {
- return name;
- }
-
- public void setName(String name) {
- this.name = name;
- }
-
- public String getAddress() {
- return address;
- }
-
- public void setAddress(String address) {
- this.address = address;
- }
-
- public String getPhone() {
- return phone;
- }
-
- public void setPhone(String phone) {
- this.phone = phone;
- }
-
- public String getMobile() {
- return mobile;
- }
-
- public void setMobile(String mobile) {
- this.mobile = mobile;
- }
-
-}