diff options
author | Avik Sengupta <avik@apache.org> | 2003-05-03 18:58:44 +0000 |
---|---|---|
committer | Avik Sengupta <avik@apache.org> | 2003-05-03 18:58:44 +0000 |
commit | 5419ef95e7dde04822e7d368b4534b4db8d85d1f (patch) | |
tree | d2813c5a2d834ad009a4f3e995e25a001ebd14b8 /src/contrib | |
parent | 61ea7361da4dd8ca4f27754d2a10ae0beff0dcb6 (diff) | |
download | poi-5419ef95e7dde04822e7d368b4534b4db8d85d1f.tar.gz poi-5419ef95e7dde04822e7d368b4534b4db8d85d1f.zip |
bug 19528, new greek unicode mappings by eric pugh, simple enuf
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@353079 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/contrib')
-rw-r--r-- | src/contrib/src/org/apache/poi/hssf/usermodel/contrib/HSSFCellUtil.java | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/contrib/src/org/apache/poi/hssf/usermodel/contrib/HSSFCellUtil.java b/src/contrib/src/org/apache/poi/hssf/usermodel/contrib/HSSFCellUtil.java index bc4bcf7231..2cf0e8ad90 100644 --- a/src/contrib/src/org/apache/poi/hssf/usermodel/contrib/HSSFCellUtil.java +++ b/src/contrib/src/org/apache/poi/hssf/usermodel/contrib/HSSFCellUtil.java @@ -278,13 +278,23 @@ public class HSSFCellUtil return cell; } - - static - { + + static { unicodeMappings.put( "α", "\u03B1" ); + unicodeMappings.put( "β", "\u03B2" ); unicodeMappings.put( "γ", "\u03B3" ); + unicodeMappings.put( "δ", "\u03B4" ); unicodeMappings.put( "ε", "\u03B5" ); + unicodeMappings.put( "ζ", "\u03B6" ); + unicodeMappings.put( "η", "\u03B7" ); unicodeMappings.put( "θ", "\u03B8" ); + unicodeMappings.put( "ι", "\u03B9" ); + unicodeMappings.put( "κ", "\u03BA" ); + unicodeMappings.put( "λ", "\u03BB" ); + unicodeMappings.put( "μ", "\u03BC" ); + unicodeMappings.put( "ν", "\u03BD" ); + unicodeMappings.put( "ξ", "\u03BE" ); + unicodeMappings.put( "ο", "\u03BF" ); } } |