KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tonbeller > jpivot > print > PrintComponentTag


1 /*
2  * ====================================================================
3  * This software is subject to the terms of the Common Public License
4  * Agreement, available at the following URL:
5  * http://www.opensource.org/licenses/cpl.html .
6  * Copyright (C) 2003-2004 TONBELLER AG.
7  * All Rights Reserved.
8  * You must accept the terms of that agreement to use this software.
9  * ====================================================================
10  */

11 package com.tonbeller.jpivot.print;
12
13 import com.tonbeller.wcf.component.Component;
14 import com.tonbeller.wcf.component.ComponentTag;
15 import com.tonbeller.wcf.controller.RequestContext;
16
17
18 /**
19  * creates a ChartComponent
20  * @author Robin Bagot
21  */

22 public class PrintComponentTag extends ComponentTag {
23     String JavaDoc query;
24
25   /**
26    * creates a Print Component
27    */

28   public Component createComponent(RequestContext context) throws Exception JavaDoc {
29     return new PrintComponent(id, context);
30   }
31   
32 }
33
Popular Tags