Java tutorial
/* * Copyright 2011-2016 ZuoBian.com All right reserved. This software is the confidential and proprietary information of * ZuoBian.com ("Confidential Information"). You shall not disclose such Confidential Information and shall use it only * in accordance with the terms of the license agreement you entered into with ZuoBian.com. */ package com.mmj.app.lucene.search.build.base; import org.apache.commons.lang.StringUtils; /** * @author zxc Sep 2, 2014 2:31:47 PM */ public class Param { private String title; public String getTitle() { return title; } public void setTitle(String title) { if (StringUtils.isNotBlank(title)) { this.title = title; } } }