?? cmsqueries.java
字號:
/*
* File : $Source: /usr/local/cvs/opencms/src/com/opencms/file/mssql/CmsQueries.java,v $
* Date : $Date: 2001/11/14 10:13:25 $
* Version: $Revision: 1.1 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (C) 2001 The OpenCms Group
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* For further information about OpenCms, please see the
* OpenCms Website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.opencms.file.mssql;
import com.opencms.core.*;
import java.util.*;
public class CmsQueries extends com.opencms.file.genericSql.CmsQueries
{
private static Properties m_queries = null;
/**
* CmsQueries constructor comment.
*/
public CmsQueries() {
if(m_queries == null) {
m_queries = new Properties();
try {
m_queries.load(getClass().getClassLoader().getResourceAsStream("com/opencms/file/mssql/query.properties"));
} catch(NullPointerException exc) {
if(A_OpenCms.isLogging() && I_CmsLogChannels.C_PREPROCESSOR_IS_LOGGING) {
A_OpenCms.log(I_CmsLogChannels.C_OPENCMS_CRITICAL, "[CmsQueries] cannot get com/opencms/file/mssql/query.properties");
}
} catch(java.io.IOException exc) {
if(A_OpenCms.isLogging() && I_CmsLogChannels.C_PREPROCESSOR_IS_LOGGING) {
A_OpenCms.log(I_CmsLogChannels.C_OPENCMS_CRITICAL, "[CmsQueries] cannot get com/opencms/file/mssql/query.properties");
}
}
}
}
/**
* Get the value for the query name
*
* @param queryName the name of the property
* @return The value of the property
*/
public String get(String queryName){
if(m_queries == null) {
m_queries = new Properties();
try {
m_queries.load(getClass().getClassLoader().getResourceAsStream("com/opencms/file/mssql/query.properties"));
} catch(NullPointerException exc) {
if(A_OpenCms.isLogging() && I_CmsLogChannels.C_PREPROCESSOR_IS_LOGGING) {
A_OpenCms.log(I_CmsLogChannels.C_OPENCMS_CRITICAL, "[CmsQueries] cannot get com/opencms/file/mssql/query.properties");
}
} catch(java.io.IOException exc) {
if(A_OpenCms.isLogging() && I_CmsLogChannels.C_PREPROCESSOR_IS_LOGGING) {
A_OpenCms.log(I_CmsLogChannels.C_OPENCMS_CRITICAL, "[CmsQueries] cannot get com/opencms/file/mssql/query.properties");
}
}
}
String value = m_queries.getProperty(queryName);
if (value == null ||"".equals(value)){
value = super.get(queryName);
}
return value;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -