Mercurial > hg > octave-nkf
comparison scripts/java/org/octave/TeXcode.java @ 15753:6e39fe7992d9
style fixes and copyright update for java files
* ClassHelper.java, DlgListener.java, JDialogBox.java,
Matrix.java, OctClassLoader.java, Octave.java, OctaveReference.java,
TeXcode.java, TeXtranslator.java:
Use Octave copyright text. Style fixes.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 08 Dec 2012 00:24:45 -0500 |
parents | acf0addfc610 |
children | d63878346099 |
comparison
equal
deleted
inserted
replaced
15752:f96faf028d90 | 15753:6e39fe7992d9 |
---|---|
1 /** | 1 /* |
2 * | 2 |
3 * This program is free software; you can redistribute it and/or modify | 3 Copyright (C) 2010 Martin Hepperle |
4 * it under the terms of the GNU General Public License as published by | 4 |
5 * the Free Software Foundation; either version 2 of the License, or | 5 This file is part of Octave. |
6 * (at your option) any later version. | 6 |
7 * | 7 Octave is free software; you can redistribute it and/or modify it |
8 * This program is distributed in the hope that it will be useful, | 8 under the terms of the GNU General Public License as published by |
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 the Free Software Foundation; either version 3 of the License, or (at |
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 your option) any later version. |
11 * GNU General Public License for more details. | 11 |
12 * | 12 Octave is distributed in the hope that it will be useful, but |
13 * You should have received a copy of the GNU General Public License | 13 WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * along with this program; If not, see <http://www.gnu.org/licenses/>. | 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 * | 15 General Public License for more details. |
16 * A class to hold a TeX character code -> Unicode translation pair. | 16 |
17 * | 17 You should have received a copy of the GNU General Public License |
18 * <p>Copyright (c) 2010 Martin Hepperle</p> | 18 along with Octave; see the file COPYING. If not, see |
19 * | 19 <http://www.gnu.org/licenses/>. |
20 * @author Martin Hepperle | 20 |
21 * @version 1.0 | 21 */ |
22 */ | 22 |
23 // A class to hold a TeX character code -> Unicode translation pair. | |
24 | |
23 package org.octave; | 25 package org.octave; |
24 | 26 |
25 public class TeXcode | 27 public class TeXcode |
26 { | 28 { |
27 protected String tex; | 29 protected String tex; |
28 protected char ucode; | 30 protected char ucode; |
29 | 31 |
30 public TeXcode ( String t, char u ) | 32 public TeXcode (String t, char u) |
31 { | 33 { |
32 tex = t; | 34 tex = t; |
33 ucode = u; | 35 ucode = u; |
34 } | 36 } |
35 } | 37 } |