本文整理汇总了Java中org.apache.log4j.helpers.FormattingInfo类的典型用法代码示例。如果您正苦于以下问题:Java FormattingInfo类的具体用法?Java FormattingInfo怎么用?Java FormattingInfo使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FormattingInfo类属于org.apache.log4j.helpers包,在下文中一共展示了FormattingInfo类的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: UserDirPatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
UserDirPatternConverter(FormattingInfo formattingInfo) {
super(formattingInfo);
}
示例2: LogNumberPatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
LogNumberPatternConverter(FormattingInfo formattingInfo) {
super(formattingInfo);
}
示例3: ZimbraPatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
ZimbraPatternConverter(FormattingInfo formattingInfo) {
super(formattingInfo);
}
示例4: HeaderPatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
public HeaderPatternConverter(FormattingInfo formattingInfo) {
super(formattingInfo);
}
示例5: ThrowablePatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
public ThrowablePatternConverter(FormattingInfo formattingInfo)
{
super(formattingInfo);
}
示例6: EscapedMessagePatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
EscapedMessagePatternConverter(final FormattingInfo formattingInfo)
{
super(formattingInfo);
}
示例7: BasicPatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
BasicPatternConverter(FormattingInfo formattingInfo, int type) {
super(formattingInfo);
this.type = type;
}
示例8: DatePatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
DatePatternConverter(FormattingInfo formattingInfo, DateFormat df) {
super(formattingInfo);
date = new Date();
this.df = df;
}
示例9: SyncDatePatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
SyncDatePatternConverter(FormattingInfo formattingInfo, DateFormat df) {
super(formattingInfo);
date = new Date();
this.df = df;
}
示例10: MDCPatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
MDCPatternConverter(FormattingInfo formattingInfo, String key) {
super(formattingInfo);
this.key = key;
}
示例11: LocationPatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
LocationPatternConverter(FormattingInfo formattingInfo, int type) {
super(formattingInfo);
this.type = type;
}
示例12: NamedPatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
NamedPatternConverter(FormattingInfo formattingInfo, int precision) {
super(formattingInfo);
this.precision = precision;
}
示例13: ClassNamePatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
ClassNamePatternConverter(FormattingInfo formattingInfo, int precision) {
super(formattingInfo, precision);
}
示例14: CategoryPatternConverter
import org.apache.log4j.helpers.FormattingInfo; //导入依赖的package包/类
CategoryPatternConverter(FormattingInfo formattingInfo, int precision) {
super(formattingInfo, precision);
}