0% found this document useful (0 votes)
31 views

Code

The document describes code for a library management system with classes for students, books, and transactions. The student class stores student details and has methods for adding, searching, updating, and deleting students. The book class stores book details like call number, ISBN, title, author, and status, and has methods for adding, validating, searching, updating, deleting, checking in, and checking out books. The transaction class tracks transactions and has a method for updating transactions.

Uploaded by

Kadher Mohideen
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views

Code

The document describes code for a library management system with classes for students, books, and transactions. The student class stores student details and has methods for adding, searching, updating, and deleting students. The book class stores book details like call number, ISBN, title, author, and status, and has methods for adding, validating, searching, updating, deleting, checking in, and checking out books. The transaction class tracks transactions and has a method for updating transactions.

Uploaded by

Kadher Mohideen
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

CODE GENERATION

public class library { private int Studentname; private int Bookname; private int Transaction; /** @roseuid 3D941B9100BB public Student() { } /** @roseuid 3D942DAE0271 */ public void AddStudent() { } /** @roseuid 3D942DB70242 */ public void Search() { } public void Update()

{ } /** @roseuid 3D942DB70242 */ public void Delete() { } /** @roseuid 3D942DB70242 */

} Book.java public class Book { private int Callno; private int ISBN; private int Title; private int Author; private int Status;

/** @roseuid 3D941B91007D

*/ public Addbook() { } /** @roseuid 3D942D970138 */ */ public Validdate() { } /** */ public Search() { } /** */ public Update() { } /** */ public Delete()

{ } /** */ public Checkin() { } /** public void Checkout() { } /**

} public class Transaction { private int Transaction; public void Update() { } /**

} }

You might also like