/** Creates new form SummaryPanel */
public SummaryPanel(FrameworkModel model) {
_model = model;
_conversationModel = new UrlFilteredConversationModel(_model, _model.getConversationModel());
// FIXME this is the wrong place for this, I think?
_urlModel = new FilteredUrlModel(model.getUrlModel()) {
protected boolean shouldFilter(HttpUrl url) {
return _model.getUrlProperty(url, "METHODS") == null;
}
};
initComponents();