Lines Matching refs:String

52     private String m_sPrinterName;               // within Windows the tools need a printer name;
54 public void setPrinterName(String _s) in setPrinterName()
60 private String m_sDocumentName;
61 private String m_sResult;
64 public MSOfficePostscriptCreator(ParameterHelper _aParam, String _sResult) in MSOfficePostscriptCreator()
77 String sKillCommand = "C:/bin/kill.exe -9 winword;C:/bin/kill.exe -9 excel"; in MSOfficePostscriptCreator()
81 public void load(String _sDocumentName) throws OfficeException in load()
97 String sDocumentName = m_sDocumentName + ".ps"; in storeAsPostscript()
104 String sBasename = FileHelper.getBasename(sDocumentName); in storeAsPostscript()
132 private boolean isWordDocument(String _sSuffix) in isWordDocument()
143 private boolean isExcelDocument(String _sSuffix) in isExcelDocument()
160 private boolean isPowerPointDocument(String _sSuffix) in isPowerPointDocument()
173 private boolean isMSOfficeDocumentFormat(String _sFile) in isMSOfficeDocumentFormat()
175 String sDocumentSuffix = FileHelper.getSuffix(_sFile); in isMSOfficeDocumentFormat()
185 String _sInputFile, in storeToFileWithMSOffice()
186String _sOutputFile) throws OfficeException, java.io.IOException in storeToFileWithMSOffice()
188 String sDocumentSuffix = FileHelper.getSuffix(_sInputFile); in storeToFileWithMSOffice()
189 String sFilterName = _aGTA.getExportFilterName(); in storeToFileWithMSOffice()
190 ArrayList<String> aStartCommand = new ArrayList<String>(); in storeToFileWithMSOffice()
205 String sDocFormat = getXMLDocumentFormat(_sInputFile); in storeToFileWithMSOffice()
255 String _sInputFile, in printToFileWithMSOffice()
256String _sPrintFilename) throws OfficeException, java.io.IOException in printToFileWithMSOffice()
258 String sDocumentSuffix = FileHelper.getSuffix(_sInputFile); in printToFileWithMSOffice()
262 ArrayList<String> aStartCommand = new ArrayList<String>(); in printToFileWithMSOffice()
278 String sOfficeType = getOfficeType(_sInputFile); in printToFileWithMSOffice()
304 String sPrinterName = m_sPrinterName; in printToFileWithMSOffice()
320 String sUserDir = System.getProperty("user.home"); in printToFileWithMSOffice()
337 String[] aList = new String[nValues]; in realStartCommand()
340 String aStr = (String) _aStartCommand.get(i); in realStartCommand()
349 aList[i] = new String(aStr); in realStartCommand()
372 private String getPerlExe() in getPerlExe()
374 final String sPerlExe = System.getProperty("perl.exe", "perl"); in getPerlExe()
378 ArrayList<String> createWordPrintHelper() throws java.io.IOException in createWordPrintHelper()
381 String sTmpPath = util.utils.getUsersTempDir(); in createWordPrintHelper()
382 String ls = System.getProperty("line.separator"); in createWordPrintHelper()
384 String sPrintViaWord = "printViaWord.pl"; in createWordPrintHelper()
386 ArrayList<String> aList = searchLocalFile(sPrintViaWord); in createWordPrintHelper()
392 String sFileName = FileHelper.appendPath(sTmpPath, sPrintViaWord); in createWordPrintHelper()
482 ArrayList<String> searchLocalFile(String _sScriptName) in searchLocalFile()
484 String userdir = System.getProperty("user.dir"); in searchLocalFile()
486 ArrayList<String> aList = new ArrayList<String>(); in searchLocalFile()
487 String sFileName = FileHelper.appendPath(userdir, _sScriptName); in searchLocalFile()
501 String sName = aPerlScript.getAbsolutePath(); in searchLocalFile()
511 ArrayList<String> createWordStoreHelper() throws java.io.IOException in createWordStoreHelper()
514 String sTmpPath = util.utils.getUsersTempDir(); in createWordStoreHelper()
515 String ls = System.getProperty("line.separator"); in createWordStoreHelper()
518 String sSaveViaWord = "saveViaWord.pl"; in createWordStoreHelper()
520 ArrayList<String> aList = searchLocalFile(sSaveViaWord); in createWordStoreHelper()
526 String sName = FileHelper.appendPath(sTmpPath, sSaveViaWord); in createWordStoreHelper()
593 ArrayList<String> createExcelPrintHelper() throws java.io.IOException in createExcelPrintHelper()
596 String sTmpPath = util.utils.getUsersTempDir(); in createExcelPrintHelper()
597 String ls = System.getProperty("line.separator"); in createExcelPrintHelper()
599 String sPrintViaExcel = "printViaExcel.pl"; in createExcelPrintHelper()
601 ArrayList<String> aList = searchLocalFile(sPrintViaExcel); in createExcelPrintHelper()
606 String sName = FileHelper.appendPath(sTmpPath, sPrintViaExcel); in createExcelPrintHelper()
696 ArrayList<String> createExcelStoreHelper() throws java.io.IOException in createExcelStoreHelper()
699 String sTmpPath = util.utils.getUsersTempDir(); in createExcelStoreHelper()
700 String ls = System.getProperty("line.separator"); in createExcelStoreHelper()
702 String sSaveViaExcel = "saveViaExcel.pl"; in createExcelStoreHelper()
704 ArrayList<String> aList = searchLocalFile(sSaveViaExcel); in createExcelStoreHelper()
709 String sName = FileHelper.appendPath(sTmpPath, sSaveViaExcel); in createExcelStoreHelper()
785 ArrayList<String> createPowerPointPrintHelper() throws java.io.IOException in createPowerPointPrintHelper()
788 String sTmpPath = util.utils.getUsersTempDir(); in createPowerPointPrintHelper()
789 String ls = System.getProperty("line.separator"); in createPowerPointPrintHelper()
791 String sPrintViaPowerPoint = "printViaPowerPoint.pl"; in createPowerPointPrintHelper()
793 ArrayList<String> aList = searchLocalFile(sPrintViaPowerPoint); in createPowerPointPrintHelper()
798 String sName = FileHelper.appendPath(sTmpPath, sPrintViaPowerPoint); in createPowerPointPrintHelper()
890 public String getOfficeType(String _sFilename) in getOfficeType()
899 String sOfficeType = ""; in getOfficeType()
903 String aLine = ""; in getOfficeType()
956 private static String getXMLDocumentFormat(String _sInputFile) in getXMLDocumentFormat()
958 String sType = "word"; // default in getXMLDocumentFormat()
973 String sRootNodeName = rootNode.getNodeName(); in getXMLDocumentFormat()