代码搜索:Exercise
找到约 10,000 项符合「Exercise」的源代码
代码结果 10,000
www.eeworm.com/read/385740/8791074
doc recommended exercise 4.doc
www.eeworm.com/read/429452/8807863
java exercise 3.orderitem.java
/**
* This class models an item in an order.
*
* @author Neil
* @version 1.0.0
* @see Product
*/
public class OrderItem {
private Product product;
private int quantity;
/**
www.eeworm.com/read/429452/8807865
java exercise 8.gourmetcoffeegui.java
import java.util.*;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import java.io.*;
import java.text.*;
/**
* Gourmet Coffee System.
*
*
www.eeworm.com/read/429452/8807870
java exercise 5.xmlsalesformatter.java
import java.util.*;
/**
* This class implements the interface SalesFormatter. This class is implemented
* as a singleton so a new object will not be created every time the XML format
* is use
www.eeworm.com/read/429452/8807877
java exercise 3.product.java
/**
* This class models a generic product in the store.
*
* @author Neil
* @version 1.0.0
*/
public class Product {
protected String code;
protected String description;
protected d
www.eeworm.com/read/429452/8807884
java exercise 4.sales.java
import java.util.*;
/**
* The class maintains a list of the orders that have been completed. This
* class implements the interface Iterable to being able to iterate
* through the order
www.eeworm.com/read/429452/8807894
java exercise 3.coffee.java
/**
* This class models a coffee product. It extends class Product.
*
* @author Neil
* @version 1.0.0
* @see Product
*/
public class Coffee extends Product {
private String origin;
www.eeworm.com/read/429452/8807897
java exercise 5.htmlsalesformatter.java
import java.util.*;
/**
* This class implements the interface SalesFormatter. This class is implemented
* as a singleton so a new object will not be created every time the HTML format
* is us
www.eeworm.com/read/429452/8807903
java exercise 5.salesformatter.java
/**
* This interface declares the method that every "Formatter" class will
* implement.
*
* @author Neil
* @version 1.1.0
* @see Sales
*/
public interface SalesFormatter {
/**
*