vault backup: 2024-02-20 13:05:19

This commit is contained in:
2024-02-20 13:05:19 +00:00
parent 7f6d033cc4
commit 0134f066d6
45 changed files with 1429 additions and 76 deletions

View File

@@ -22,26 +22,19 @@ public class LibraryItem
/**
* Constructor for objects of class LibraryItem
*/
public LibraryItem( String title, String itemCode, int cost, int timesBorrowed, boolean onLoan)
/*public LibraryItem( String title, String itemCode, int cost, int timesBorrowed, boolean onLoan)
{
this.title = title;
this.itemCode = itemCode;
this.cost = cost;
this.timesBorrowed = timesBorrowed;
this.onLoan = onLoan;
}
}*/
/*
* Default constructor for object of class LibraryItem
*/
public LibraryItem()
{
title = "";
itemCode = "";
cost = 0;
timesBorrowed = 0;
onLoan = false;
}
public LibraryItem(){}
/*
* Field Accessor Start