Advertisement
nawamkihafahd

Untitled

Sep 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. boolean courseText;
  2.  
  3. public Book(String bookAuthor, String bookTitle, int bookPage, boolean ct)
  4. {
  5. author = bookAuthor;
  6. title = bookTitle;
  7. page = bookPage;
  8. refNumber="";
  9. courseText = ct;
  10. }
  11. public boolean isCourseText()
  12. {
  13. return courseText;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement