D:\NewZebra\JavaApplications\DesignPatternsProject\src\structural_patterns\pdf_facade_pattern\TextImageBaseAssembler.java
 1 /* 
 2  * TextImageBaseAssembler.java
 3  *
 4  * Disclaimer:
 5  * ZebraSoft.com disclaims all warrantees with regard to documents/programs, including 
 6  * all implied warranties. In no event shall ZebraSoft.com be liable for indirect or 
 7  * consequential damages or any damages whatsoever resulting from loss of use, data or 
 8  * profits arising out of the use of documents/programs.
 9  * 
10  * All content included on this site, such as text, graphics, logos, button icons, 
11  * images, audio clips, video clips, digital downloads, programs, data compilations, 
12  * and software, is the property of ZebraSoft.com or its content suppliers and 
13  * protected by United States and international copyright laws. 
14  *
15  * This site or any portion of this site may not be reproduced, duplicated, 
16  * copied, sold, resold, visited, or otherwise exploited for any commercial 
17  * purpose without express written consent of ZebraSoft.com.
18  */
19 
20 package structural_patterns.pdf_facade_pattern;
21 
22 /**   
23  *
24  * @author Sam Eldin
25  */
26 
27 abstract public class TextImageBaseAssembler {
28     
29     /** Creates a new instance of TextImageBaseAssembler */
30     public TextImageBaseAssembler() {
31     }
32    abstract public String who_am_I();
33    abstract public void factoryMethod();
34     
35 }
36 
37