@Override
public SearchContext clone() {
try {
SearchContext context = null;
context = (SearchContext)super.clone();
// Don't copy over listeners
context.support = new PropertyChangeSupport(context);
return context;
} catch (CloneNotSupportedException cnse) { // Never happens
throw new RuntimeException("Should never happen", cnse);
}
}
SearchContext.java 文件源码
java
阅读 18
收藏 0
点赞 0
评论 0
项目:powertext
作者:
评论列表
文章目录