/****************************************************************************** * Copyright (C) 2009 Low Heng Sin * * Copyright (C) 2009 Idalica Corporation * * This program is free software; you can redistribute it and/or modify it * * under the terms version 2 of the GNU General Public License as published * * by the Free Software Foundation. This program is distributed in the hope * * that it will be useful, but WITHOUT ANY WARRANTY; without even the implied * * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * * with this program; if not, write to the Free Software Foundation, Inc., * * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * *****************************************************************************/ package org.compiere.install; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.logging.Level; import org.compiere.apps.IStatusBar; import org.compiere.util.CLogger; import org.compiere.util.DB; import org.compiere.util.KeyNamePair; import org.compiere.util.ValueNamePair; /* * Deprecated with IDEMPIERE-4566 * moved to org.idempiere.process.TranslationImpExp */ @Deprecated public class TranslationController { public TranslationController() { } /** Logger */ public static final CLogger log = CLogger.getCLogger(TranslationController.class); /** Window No */ public int m_WindowNo = 0; public ArrayList getClientList() { ArrayList list = new ArrayList(); list.add(new KeyNamePair (-1, "")); String sql = "SELECT Name, AD_Client_ID " + "FROM AD_Client " + "WHERE IsActive='Y' " + "ORDER BY AD_Client_ID"; PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement(sql, null); rs = pstmt.executeQuery(); while (rs.next()) { KeyNamePair kp = new KeyNamePair (rs.getInt(2), rs.getString(1)); list.add(kp); } } catch (SQLException e) { log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } return list; } public ArrayList getLanguageList() { ArrayList list = new ArrayList(); // Fill Language String sql = "SELECT Name, AD_Language " + "FROM AD_Language " + "WHERE IsActive='Y' AND (IsSystemLanguage='Y' OR IsBaseLanguage='Y') " + "ORDER BY Name"; PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement(sql, null); rs = pstmt.executeQuery(); while (rs.next()) { ValueNamePair vp = new ValueNamePair (rs.getString(2), rs.getString(1)); list.add(vp); } } catch (SQLException e) { log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } return list; } public ArrayList getTableList() { ArrayList list = new ArrayList(); // Fill Table list.add(new ValueNamePair ("", "")); String sql = "SELECT Name, TableName " + "FROM AD_Table " + "WHERE TableName LIKE '%_Trl' AND TableName<>'AD_Column_Trl' " + "ORDER BY Name"; PreparedStatement pstmt = null; ResultSet rs = null; try { pstmt = DB.prepareStatement(sql, null); rs = pstmt.executeQuery(); while (rs.next()) { ValueNamePair vp = new ValueNamePair (rs.getString(2), rs.getString(1)); list.add(vp); } } catch (SQLException e) { log.log(Level.SEVERE, sql, e); } finally { DB.close(rs, pstmt); rs = null; pstmt = null; } return list; } public void setStatusBar(IStatusBar statusBar) { // Info statusBar.setStatusLine(" "); statusBar.setStatusDB(" "); } // dynInit }