Aenigma / ActionMockup

Other
1 stars 0 forks source link

Print Architecture #21

Closed jackal390iv closed 10 years ago

jackal390iv commented 10 years ago
/**
* this class holds all jasper reports methods
*/
public Class ReportsPrinter{

/**
* there is a method like this one for each FormFactory, in order to create a print screen
*/
public void print_Driver_Interface_Info(DriverFormFactory instance){
    pulls data from "instance" and sends that data to "IReportTemplate_For_Driver_Interface" to create a print
}
}

/**
* there is a class like this one for each method in the ReportsPrinter class
*/
public Class IReportTemplate_For_Driver_Interface{
    // this class is just a template gui that is filled in and creates a printable page, that is all it does
}
jackal390iv commented 10 years ago
/**
*this class holds all jasper reports methods 
*/ 
public Class ReportsPrinter{

      /**
      * there is a method like this one for each FormFactory, in order to create a print screen 
       */ 
        public void print_Driver_Interface_Info(DriverFormFactory instance){ 
              //pulls data from "instance" and sends that data to "IReportTemplate_For_Driver_Interface"                 
              // to create a print 
         }
 }
jackal390iv commented 10 years ago
/**
*there is a class like this one for each method in the ReportsPrinter class 
*/ 
public Class IReportTemplate_For_Driver_Interface{ 
       // this class is just a template gui that is filled in and creates a printable page, that is all it does 
}