1 16 19 package org.apache.xalan.transformer; 20 21 25 public class DecimalToRoman 26 { 27 28 39 public DecimalToRoman(long postValue, String postLetter, long preValue, 40 String preLetter) 41 { 42 43 this.m_postValue = postValue; 44 this.m_postLetter = postLetter; 45 this.m_preValue = preValue; 46 this.m_preLetter = preLetter; 47 } 48 49 50 public long m_postValue; 51 52 53 public String m_postLetter; 54 55 56 public long m_preValue; 57 58 59 public String m_preLetter; 60 } 61 | Popular Tags |