Group Name: Artificial Ledger Technology 🇵🇭
Subject & Section: 🧚♂️ CCPRGG2L COM23P 🧚♀️
Professor: 👦 Jay D. Abaleta
No. of Units: 3 Units
Prerequisite: CCPRGG1L Fundamentals of Programming
Course Repo: CCPRGG2L Intermediate Programming
This repository contains source code for our final project for intermediate java that focuses on Intermediate concepts, codes and exercises.
This course is a continuation of CCPRGG1L - Fundamentals of Programming. The course covers advanced topics in Java to train students in developing robust programs. Topics to be covered include recursion, regular expression, basic object-oriented principles, graphics, and multithreaded programming.
At the end of the course, the studend must be able to:
- Create a program that uses recursions and regular expressions
- Implement Object-Oriented in program design
- Create and document application that uses a modern graphical user interface (GUI)
Week No. | Date Coverage | Topic | Reference |
---|---|---|---|
1 | April 6 | Class Orientation | Course Syllabus |
- Ø University Mission & Vision | |||
- Ø College Mission & Vision | |||
- Ø Course Syllabi | |||
- Ø Lab Guidelines and Safety Review | |||
2 | April 6 | Arrays | Chapter 8&9 Java Programming Eight Edition, Farrell, Joyce |
3 | April 13 | File and String manipulation | Chapter 7&13 Java Programming Eight Edition, Farrell, Joyce |
4 | April 20 | Recursion | Chapter 2 Introduction to Programming in Java: An Interdisciplinary Approach, 2nd Edition, Robert Sedgewick |
April 27 | Chapter 13 Java Programming: From Problem Analysis to Program Design, Fifth Edition, Malik, DS | ||
5 | May 4 | Regular Expression | Chapter 30 Java: The Complete Reference Tenth Edition, Schildt, Herbert, 2018 |
6 | May 11 | Introduction to Classes | Chapter 3 Java Programming Eight Edition, Farrell, Joyce |
7 | May 18 | Composition, objects, and classes | Chapter 3 Introduction to Programming in Java: An Interdisciplinary Approach, 2nd Edition, Robert Sedgewick |
8 | May 25 | Instance method Inheritance Polymorphism | Chapter 10 Java Programming: From Problem Analysis to Program Design, Fifth Edition, Malik, DS |
9 | June 1 | Introduction to Swing package | Chapter 14 Java Programming Eight Edition, Farrell, Joyce |
10 | June 8 | Interfaces and event-driven programming | Chapter 10 Core Java: Volume II Advanced Features Tenth Edition, Hortsmann, Cay S., 2017 |
11 | June 15 | Threads | Chapter 11 Java: The Complete Reference Tenth Edition, Schildt, Herbert, 2018 |
12 | June 22 | Runnable interface Synchronization | Chapter 11 Core Java: Volume II Advanced Features Tenth Edition, Hortsmann, Cay S., 2017 |
13 | June 29 | Course Synthesis & Final Examination |
- Java Programming Eight Edition, Farrell, Joyce, 2016
- Object-Oriented Data Structures Using Java Fourth Edition, Dale, Nell,2018
- Java : The Complete Reference Tenth Edition, Schildt, Herbert, 2018
- Introduction To Programming in Java: An Interdisciplinary Approach Second Edition, Sedgewick, Robert, 2017
- Core Java: Volume II Advanced Features Tenth Edition, Hortsmann, Cay S., 2017
- Java Precisely Third Edition, Peter Sestoft, 2016
Assignments, Laboratory Exercises, Long Exam, Final Exam
Other Learning Activities (20%)
(Assignment, Laboratory Exercise, Seatwork, Recitations, others)
Long Exams (40%)
Final Exam/Project (40%)
🚀 Construct a JAVA OOP program using Java Swing GUI environment for Personal New Bank Account, that the new user will Register the following information:
| Registration Form | |
|-----------------------------|---------------------|
| First Name: | Middle Name: |
| Last Name: | Gender: |
| Birthdate: | Father Name: |
| Mother Name: | Contact No: |
| Address: | Pin code: |
|-----------------------------|---------------------|
| Username: | Password: |
| | |
| | |
| Initial Deposit: 500 | |
💱 The program will store all the information “NewAccount.txt” for the storage of the bank account, the program has feature of Deposit, Withdraw and Balance Inquiry. The initial deposit is the constant value 500 in the registration. Account No. will start at this default value. 2024100000. – new
-
Secure the Username and Password
-
Set an Exception handling to avoid Errors.
- User Registration: Allows users to create an account and securely register their personal information.
- Account Management: Enables users to manage their bank accounts, including creating new accounts, viewing balances, and making transactions.
- Transaction History: Provides a detailed transaction history for each user, allowing them to track their financial activities.
- Security Measures: Implements robust security measures, such as encryption and authentication, to ensure the safety of user data.
- Create new bank accounts with unique account numbers and account holder names.
- Deposit money into existing accounts.
- Withdraw money from existing accounts, with checks for sufficient balance.
- Check the current balance of an account.
- Display detailed information about an account.
- Registration Form Fantastic Background ( Video or Animated similar style when developing in NextJS)
- GUI for Login Form, Registration Form, Bank Account, etc.
- Sound Effect ( Twitch - Alert, Japanese, Optimus Prime Robot voice prompt)
💻 Code Project Structure using Maven
Artificial Ledger Bank diagram tree using "package-by-features" or "package-by-components"
ArtificialLedger.java
│
├── src
│ └── main
│ ├── java
│ │ └── your.package.structure (ArtificialLedger)
│ │ ├── components
│ │ │ ├── EventHomeOverlay (💡Interfaces)
│ │ │ ├── HeaderButton (components for Home)
│ │ │ ├── BankAccount ( integration for Account, AccountManager, resources/account-details)
│ │ │
│ │ ├── forms
│ │ │ ├── Account (🛸 GUI )
│ │ │ ├──
│ │ │ ├── Home ( Homepage )
│ │ │ ├── HomeOverlay (Home: )
│ │ │ ├──
│ │ │ ├── Login (📓Side Panel in Home )
│ │ │ ├── ModelLocation ( Extra: Background Video)
│ │ │ ├── RegistrationForm ( 🛸 GUI )
│ │ │
│ │ └── main
│ │ │ ├── Main ( 🚀 Application )
│ │ │
│ │ │
│ │ ├── utils
│ │ ├── RippleEffect (Extra:)
│ │ ├── AccountManager (integration for Account, BankAccount, resources/account-details)
│ │
│ │
│ └── resources
│ └── account-details
│ │ ├── account-details.txt
│ │ └── account-details.txt
│ │
│ └── images
│ │ ├── background-image-file.png
│ │ └── your-image-file.png
│ │
│ └── voice-effect
│ └── voice-effect-file.wav
│
├── pom.xml (or build.gradle, etc.)
│
└── video
├── video 1.mp4
├── video 2.mp4
└── video 3.mp4
...
💻 The code tree structure that I provided follows the principles of a software architectural pattern known as the "Package by Feature" or "Package by Component" pattern. This pattern is commonly used in Object-Oriented Programming (OOP) and is particularly prevalent in frameworks and libraries that promote a modular and component-based approach to application development.
- 🚀 Download VLC Media Player 64 bit. Depends on your jdk version if lower jdk need 32 bit
- 🚀 Download and use Intellij Idea Community Edition
- 🚀 Understand the Code Tree Structure of Artificial Ledger Bank
- 🚀 Locate the designated important file such as video, resources file like wav, png, jpg in appropriate directory file in your Idea folder located in your system drive or C:\drive. Example: C:\Users\eimifukuda\IdeaProjects\ArtificialLedger\
-
💻 IntelliJ IDEA Community Edition - Good for personal project, Git Integration features and tons of useful features, easy to use and eye freshing UI theme. The only downside of this is that you need to enable your Microsoft security anti-malware to be able to install this IDE. You cannot store multiple java project unlike Eclipse.
-
💻 Eclipse - Best choice for every Java Developer out there, best for storing multiple java project because of the workspace features on this IDE. But if you're trying to run this project, you need to downgrade your JDK version into 8 and figure-out how to crack those installation lols.
-
💻 Visual Studio Code - I've never try to run this project in this IDE during the development period. The only main issue on this IDE is that you need to figure-out what extention to be install before you can run your Java file.
-
💻 XCode - I dont know, I don't have Macbook and not a fan of that $hit lols.
-
💻 Apache Netbeans - I just saw this IDE on Youtube tutorial, good for designing GUI and UI for java project. Best IDE for Java development to use and to know if you want to become a Java Developer lols.
-
💻 Vim - Do you want your life to become miserable? Use this IDE instead :D
-
💻 NeoVim - IDE for Alien being, not human being.
Artificial Ledger Technology Bank "The Bank that you can trust” – Powered by Blockchain Technology #Web3 Philippine By ArtificialLedger
If you would like to contribute to the Banking System, please follow these steps:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Make your changes and commit them.
- Push your changes to your forked repository.
- Submit a pull request to the main repository.
🧠 Contributions are welcome! If you have ideas for improvements or want to add more exercises, follow these steps:
- Fork the repository.
- Create a new branch.
- Make your changes and commit them.
- Push to your fork and submit a pull request.
-
😎 Jay Arre Talosig - Chief Technology Officer | Blockchain Developer | Bioinformatics Scientist
-
😃 Gabriel Angelo Viñas - Tech Lead | Software Engineer III | Machine Learning Engineer
-
🥰 Anilove Tiquio - Project Lead | Software Quality Assurance SQA | Digital Forensics Analyst
-
🤗 Kristine Vine Navarro - Team Lead | Software Developer | Full-Stack Engineer
-
😌 Joshua Maquilan - Quality Assurance Tester QAT | Information Security Specialist | Software Engineer
-
😋 Vince Erol Pangilinan - Software Engineer | Full-Stack Developer | Mobile Developer
Some changes need to be address
- Need to limit the Pin Code to 6 character input only just like in the Real Bank, example 123456
- Fix the GUI for Login and Account Class
- Fix some method in Account Class, for every transaction such Withdrawal, Deposit and Balance Inquiry. It needs to have Pin Code for every transaction.
Professor Jay Abaleta is a Senior Software Engineer and esteemed faculty member at National University. With a strong background in teaching the core principles and advanced concepts of Java, he is highly regarded in the field. In addition to his role at National University, Prof. Abaleta also serves as a Professor at Adamson University and as a lecturer of IT/CS at Arba Minch University, sharing his expertise with students worldwide. Having studied at St. Paul University Philippines, Prof. Abaleta brings a wealth of knowledge and experience to his teaching. Known for his friendly and approachable nature, Prof. Abaleta fosters a positive learning environment where students thrive. His dedication and passion for teaching have made him a beloved professor among his students.
The Artificial Ledger Technology Bank App is licensed under the MIT License and ALT Licence. This project is licensed under the MIT License and Artificial Ledger Technology.
Chronological list of updates, bug fixes, new features, and other modifications for our Artificial Ledger Technology Bank System Appplication.
- 💻 Professor Jay discus the Final Project requirements for out project
- ✨ Coming Soon 💻 🚀
- ✨ Coming Soon 🧠 🔑
- ✨ Brainstorming for our Project requirements
- ✨ Anilov set our first Agile Scrum meeting througout MS Teams to discuss the Project needs and requirements throughout the given 2 weeks sprint.
- ✨ Jay managed to create a Kanban Board for our 2 weeks sprint task
- ✨ Jay succesfully created the project repository in the GITHUB and distributed the assign tasks to all members
- ✨ All group members start working their assign task throughout the respective Kanban board SDLC
- ✨ Kristine setup our second meeting via Microsoft Teams to discuss the progress of the project
- ✨ Gab initiated a temporary project by developing a prototype in Eclipse, which was then distributed to Anilov, Josh, Kristine, and Vince for collaborative development.
- ✨ Anilov & Kristine setup our third meeting via Microsoft Teams to discuss the progress of our project
- ✨ Jay come up with the Maven Structure for our Java OOP. We decided to used this structure because we have so many class and different file type in our respective components such as: .png, .java, .mp4, .jav, .txt, xml )
- ✨ Jay developed the Homepage with video file than can intigrate throught Login Form
- ✨ Completed a fully functional prototype in Eclipse through combined team efforts. Encompassing core banking operations and basic user data management.
- ✨ Jay setup the Continous Integration and Continous Deployment of the project.
- ✨ Anilov & Kristine setup our fourth meeting via Microsoft Teams to discuss the progress of our project
- ✨ Anilov finalized the Software Development Life Cycle documentation
- ✨ Gab successfully merged and optimized methods and logic developed by team members in Eclipse IDE into the main IntelliJ codebase.
- ✨ Major Improvements:
- ✨ Integrated user data management across Account, AccountManager, and BankAccount classes, ensuring seamless data flow and consistency. Resolved synchronization issues, enhancing overall system reliability and performance. Implemented centralized data operations in AccountManager, reduced redundancy, and improving data integrity.
- ✨ Jay added a Pin Code feature that authenticate after successfully sign-in in the Login Class
- ✨ Thesis defense for our Final Project
- ✨ Jay added a QR Code features that authenticate after successfully sign