September 2005
Intermediate to advanced
240 pages
6h 28m
English
The reports are in this package.
public class CDDiscInventoryMain
{
public static void main( String[] args )
}
public class CDDiscInventoryReportPlainTextFormat
implements ReportPlainTextFormat
{
public CDDiscInventoryReportPlainTextFormat( )
public String getReportString( )
public CDDiscInventoryReportPlainTextFormat( CDDiscInventoryDTO
aCDDiscInventoryDTO )
}
public class ContractReportPlainTextFormat
implements ReportPlainTextFormat
{
public String getReportString( )
public ContractReportPlainTextFormat( RentalContractDTO rentalContractDTO )
}
public class OverdueRentalReportPlainTextFormat
implements ReportPlainTextFormat
{
public String getReportString( )
public OverdueRentalReportPlainTextFormat( OverdueRentalDTO
aOverdueRentalContractDTO )
}
public interface ReportPlainTextFormat
{
String getReportString( );
}
public class Reports
{
public static void printReport( ReportPlainTextFormat
aReportPlainTextFormat ) throws
PrinterFailureDeviation
public static ContractReportPlainTextFormat createContractReport(
RentalContractDTO aRentalContractDTO )
}