box.java
01 /*
02  [Adapted from BSD licence]
03  Copyright (c) 2002 Terence Parr
04  All rights reserved.
05  
06  Redistribution and use in source and binary forms, with or without
07  modification, are permitted provided that the following conditions
08  are met:
09  1. Redistributions of source code must retain the above copyright
10  notice, this list of conditions and the following disclaimer.
11  2. Redistributions in binary form must reproduce the above copyright
12  notice, this list of conditions and the following disclaimer in the
13  documentation and/or other materials provided with the distribution.
14  3. The name of the author may not be used to endorse or promote products
15  derived from this software without specific prior written permission.
16  
17  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 package gate.wiki.antlr.plugin;
29 
30 import gate.wiki.antlr.*;
31 import java.util.Vector;
32 
33 public class box implements YAMPlugin {
34   public String translate(YAMContext context, Vector args) {
35     if args.size()<) {
36       System.err.println("Missing YAM input; line "+context.getLine());
37       return null;
38     }
39     String tml = (String)args.elementAt(0);
40     String lang = context.getTarget().getTargetLanguage();
41     String ret = "";
42     if (lang.equals(Tool.HTML|| lang.equals(Tool.WIKI)){
43       ret ="%output(\n<table border=1><tr><td>"+tml.toString()+"</td></tr></table>\n)\n";
44       
45     }
46     else if(lang.equals(Tool.LATEX)) {
47       ret = "%output(\\begin{tabular}{|p{2cm}|}\n \\hline \\\\ \n";
48       ret += tml.toString() ;
49       ret += "\\\\ \\hline \n \\end{tabular})";
50     }
51     
52     else {
53       return tml;
54     }
55     // Use the same context (like what section, line, etc...)
56     // but fork a new translator that writes to a string so I can
57     // enclose in @Box
58     
59     // Unfortunately this approach leads to wrong output. For an line 
60     // "this is a %box(BOX)" it would include the whole line into the 
61     // output
62     
63     //        StringWriter output = new StringWriter();
64     //        YAMTranslator target = new HTMLTarget(output);
65     //        try {
66     //            DefaultYAMEngine.translate(context,target,"box",tml);
67     //        }
68     //        catch (TokenStreamException tse) {
69     //            System.err.println("Error parsing box input "+context.getLine());
70     //        }
71     
72     return ret;
73   }
74 }