Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Otchet_Internet_Shop_PC2.docx
Скачиваний:
0
Добавлен:
01.05.2025
Размер:
2.21 Mб
Скачать

InvoiceWindow.Java

import java.util.ArrayList;

public class InvoiceWindow {

public ArrayList<Invoice> _invoiceWindow = new ArrayList<Invoice>();

public void getInvoice() {

throw new UnsupportedOperationException();

}

}

Invoice.Java

import java.util.ArrayList;

public class Invoice {

private String _invoice_number;

private String _invoice_date;

private int _invoice_total;

public ArrayList<Order> _order = new ArrayList<Order>();

public ArrayList<InvoiceWindow> _invoice = new ArrayList<InvoiceWindow>();

public void getOrder() {

throw new UnsupportedOperationException();

}

}

Order.java

import java.util.ArrayList;

public class Order {

private int _order_id;

private String _order_date;

private String _ship_address;

private int _order_total;

private String _order_status;

private String _order_pay_status;

public Customer _addOrder;

public OrderPC _orderPC;

public ArrayList<OrderWindow> _getOrder = new ArrayList<OrderWindow>();

public Controller _s;

public Payment _payment;

public DBase _db;

public void getOrderStatus() {

throw new UnsupportedOperationException();

}

public void getPayment() {

throw new UnsupportedOperationException();

}

}

CatalogWIndow.java

import java.util.ArrayList;

public class CatalogWindow {

public Order _unnamed_Order_;

public OrderPC _addOrder;

public ArrayList<CatalogPC> _unnamed_CatalogPC_ = new ArrayList<CatalogPC>();

public OrderPC _unnamed_OrderPC_;

}

Computer.java

import java.util.ArrayList;

public class Computer {

private int _computer_id;

private String _computer_name;

private String _computer_price;

private boolean _standartPC;

public ArrayList<Catalog> _catalog = new ArrayList<Catalog>();

public ArrayList<Configuration_Item> _confItem = new ArrayList<Configuration_Item>();

public ConfiguredWindow _conf;

public DBase _db;

public List item() {

throw new UnsupportedOperationException();

}

public void addPC() {

throw new UnsupportedOperationException();

}

public void editStandartPC() {

throw new UnsupportedOperationException();

}

}

Configuration_Item.java

public class Configuration_Item {

private String _item_type;

private String _item_descr;

public Computer _pC;

public DBase _db;

public void addItem() {

throw new UnsupportedOperationException();

}

public void editItem() {

throw new UnsupportedOperationException();

}

}

Dbase.java

import java.util.ArrayList;

public class DBase {

public ArrayList<Computer> _pC = new ArrayList<Computer>();

public ArrayList<Order> _order = new ArrayList<Order>();

public Customer _custom;

public ArrayList<Configuration_Item> _confItem = new ArrayList<Configuration_Item>();

public void Add() {

throw new UnsupportedOperationException();

}

public void Remove() {

throw new UnsupportedOperationException();

}

}

Controller.java

import java.util.ArrayList;

public class Controller {

public ArrayList<Order> _order = new ArrayList<Order>();

public ArrayList<Catalog> _catalog = new ArrayList<Catalog>();

public ArrayList<Configuration_Item> _conf_Item = new ArrayList<Configuration_Item>();

public ArrayList<Computer> _pC = new ArrayList<Computer>();

public ArrayList<OrderPC> _orderPC = new ArrayList<OrderPC>();

public void doGet() {

throw new UnsupportedOperationException();

}

public void doPost() {

throw new UnsupportedOperationException();

}

}

Соседние файлы в предмете [НЕСОРТИРОВАННОЕ]