Uses of Class
com.ticketapplication.domain.Customer

Packages that use Customer
com.ticketapplication.controller   
com.ticketapplication.dao   
com.ticketapplication.domain   
 

Uses of Customer in com.ticketapplication.controller
 

Fields in com.ticketapplication.controller with type parameters of type Customer
private  java.util.List<Customer> TicketApplicationController.allCustomers
           
 

Methods in com.ticketapplication.controller that return types with arguments of type Customer
 java.util.List<Customer> TicketApplicationController.getAllCustomers()
           
 

Uses of Customer in com.ticketapplication.dao
 

Methods in com.ticketapplication.dao that return Customer
 Customer CustomerDAO.readCustomerById(int id)
           
 

Methods in com.ticketapplication.dao that return types with arguments of type Customer
 java.util.List<Customer> CustomerDAO.readAllCustomers()
           
 

Uses of Customer in com.ticketapplication.domain
 

Fields in com.ticketapplication.domain declared as Customer
private  Customer Ticket.customer
           
 

Methods in com.ticketapplication.domain that return Customer
 Customer Ticket.getCustomer()
           
 

Methods in com.ticketapplication.domain with parameters of type Customer
 void Ticket.setCustomer(Customer customer)