disablecommentsdecorator.java

来自「pebble-blog 博客源码博客源码博客源码」· Java 代码 · 共 24 行

JAVA
24
字号
package net.sourceforge.pebble.decorator;import net.sourceforge.pebble.domain.BlogEntry;import net.sourceforge.pebble.api.decorator.ContentDecoratorContext;/** * Disables comments for the blog entry. *  * @author Simon Brown */public class DisableCommentsDecorator extends ContentDecoratorSupport {  /**   * Decorates the specified blog entry.   *   * @param context   the context in which the decoration is running   * @param blogEntry the blog entry to be decorated   */  public void decorate(ContentDecoratorContext context, BlogEntry blogEntry) {    blogEntry.setCommentsEnabled(false);  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?