tabs.add("Объекты", new EntityPanel(parent, core));
tabs.add("Условия", core.getConditions().getPanel(parent));
tabs.add("Результаты выборки", new ColumnPanel(parent, core));
tabs.add("Постусловия", core.getPostConditions().getPanel(parent));
InlineCoreSQLList inlines = core.getConditionInlinesList();
InlineCoreSQLList sql = core.getResultInlinesList();
InlineCoreJavaList java = core.getResultInJavaList();
int width = (inlines != null ? 1:0) + (java != null ? 1:0) + (sql != null ? 1:0);
if(width > 0) {
JPanel inlinesTabs = new JPanel(new GridLayout(0, width));
if(inlines != null) {