0% found this document useful (0 votes)
232 views5 pages

Proposal JAVA (Tourism)

This document describes an object-oriented programming group project for a travel agency booking system called ANA Travel Agency. It includes an introduction to ANA Travel Agency and its services. It also includes details about the group members and their lecturer. The document outlines the customer class with attributes like customer ID, name, destination, package, and payment method. It also includes accessor and mutator methods for the attributes as well as a toString method. The objectives are to insert customer data according to package chosen and additional unspecified objectives.

Uploaded by

ASyiqinAzham
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
232 views5 pages

Proposal JAVA (Tourism)

This document describes an object-oriented programming group project for a travel agency booking system called ANA Travel Agency. It includes an introduction to ANA Travel Agency and its services. It also includes details about the group members and their lecturer. The document outlines the customer class with attributes like customer ID, name, destination, package, and payment method. It also includes accessor and mutator methods for the attributes as well as a toString method. The objectives are to insert customer data according to package chosen and additional unspecified objectives.

Uploaded by

ASyiqinAzham
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 5

Faculty of Computer and Mathematical Sciences

CSC 248 Object Oriented Programming

Group : JCS1105A

Title : ANA Travel Agency Booking System

Group Members:

No Name Matrix number


1. SITI NUR ASYIQIN BINTI AZHAM 2014657254
2. NOORNADIA BINTI MOHD GHANI 2014269352
3.

Lecturers Name : Madam Mazlyda Binti Abd Rahman


Table of Contents
Introduction

ANA Travel Agency and Booking System have grown to become one of leading travel
consultancies and travel agency in Johor Bharu, Malaysia. With dedicated, experienced and
committed team. It has successfully garnered local market reach in the travel services
sector. As a reputable travel agent in Malaysia, ANA travel Agency and Booking System is
strategically placed to work in-tandem with your desires and continues offering the best in
travel and tourism products including travel and tour package, hotel booking and other
services.

ANA Travel Agency and Booking System designer for air, land and sea. We create the
prefect combination of travel. That includes accommodation, tour guide, hotel, sporting
ticket and a whole load of other related services that make us distinctly stand out from the
rest. So, whatever your travel needs, be it government business or leisure, well serve you
with exceptional quality and offer an extensive array of possibilities that will make travel a
lot more convenient and cost effective.

And with ANA Travel Agency weve optimized convenience and customer satisfaction
through the use of both the efficiency of technology and the warm flexibility of the human
touch in that you can also benefit by engaging our client service professionals for opinions,
assistance and general consultation.
Object Class

public class Customer


{
private int cId, numCust, numPax;
private String cName;
private String destination; // Malacca, Penang, Manukan Island, Pangkor
private String package; // Standard ,VIP
private int payMethod; // 1 - Online Banking 2 - Credit Card

//normal constructor
public Customer(int cId, int numCust, String cName, String destination, int package, String payMethod)

//accessor method
public int getcId (){ ... }
public int getNumCust (){ ... }
public String getCName (){ ... }
public String getDestination(){ ... }
public int getPackage(){ ... }
public String getPayMethod (){ ... }

//mutator method
public void setcId (){ ... }
public void setNumVoter (){ ... }
public void setCName (){ ... }
public void setCArea (){ ... }
public void setCParty(){ ... }
public void setCState (){ ... }

//toString method
public String toString (){ ... }
}
Objectives

1. Insert customer data according to package choosen.


2.

You might also like