profanitybeaninfo.java
来自「jive 2.1.1 的源码」· Java 代码 · 共 41 行
JAVA
41 行
/**
* $RCSfile: ProfanityBeanInfo.java,v $
* $Revision: 1.2 $
* $Date: 2001/07/31 05:39:26 $
*
* Copyright (C) 1999-2001 CoolServlets, Inc. All rights reserved.
*
* This software is the proprietary information of CoolServlets, Inc.
* Use is subject to license terms.
*/
package com.jivesoftware.forum.filter;
import com.jivesoftware.forum.util.JiveBeanInfo;
/**
* BeanInfo class for the Profanity filter.
*/
public class ProfanityBeanInfo extends JiveBeanInfo {
public static final String [] PROPERTY_NAMES = {
"wordList",
"ignoringCase"
};
public ProfanityBeanInfo() {
super();
}
public Class getBeanClass() {
return com.jivesoftware.forum.filter.Profanity.class;
}
public String [] getPropertyNames() {
return PROPERTY_NAMES;
}
public String getName() {
return "Profanity";
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?