Compiles again

pull/1/head
Jens Pelzetter 2019-08-12 06:23:58 +02:00
parent d6e2b8b7a9
commit eaff75777f
2 changed files with 66 additions and 7 deletions

View File

@ -53,7 +53,8 @@ public class SciProjectContactsStep extends SimpleEditStep {
addContactSheet.getSaveCancelSection().getCancelButton()); addContactSheet.getSaveCancelSection().getCancelButton());
final SciProjectContactsTable contactsTable final SciProjectContactsTable contactsTable
= new SciProjectContactsTable(itemModel, this); = new SciProjectContactsTable(
itemModel, this);
setDisplayComponent(contactsTable); setDisplayComponent(contactsTable);
} }
@ -72,6 +73,5 @@ public class SciProjectContactsStep extends SimpleEditStep {
public void setSelectedContactType(final String selectedContactType) { public void setSelectedContactType(final String selectedContactType) {
this.selectedContactType = selectedContactType; this.selectedContactType = selectedContactType;
} }
}
} }

View File

@ -0,0 +1,59 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package com.arsdigita.cms.contenttypes.ui;
import com.arsdigita.bebop.FormProcessException;
import com.arsdigita.bebop.Table;
import com.arsdigita.bebop.event.TableActionEvent;
import com.arsdigita.bebop.event.TableActionListener;
import com.arsdigita.cms.ItemSelectionModel;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
/**
*
* @author <a href="mailto:jens.pelzetter@googlemail.com">Jens Pelzetter</a>
*/
public class SciProjectContactsTable
extends Table
implements TableActionListener {
private static final Logger LOGGER = LogManager
.getLogger(SciProjectContactsTable.class);
private final static String TABLE_COL_EDIT = "table_col_edit";
private final static String TABLE_COL_EDIT_ASSOC = "table_col_edit_assoc";
private final static String TABLE_COL_DEL = "table_col_del";
private final static String TABLE_COL_UP = "table_col_up";
private final static String TABLE_COL_DOWN = "table_col_down";
private final ItemSelectionModel itemModel;
private final SciProjectContactsStep editStep;
public SciProjectContactsTable(final ItemSelectionModel itemModel,
final SciProjectContactsStep editStep) {
super();
this.itemModel = itemModel;
this.editStep = editStep;
throw new UnsupportedOperationException("ToDo");
}
@Override
public void cellSelected(final TableActionEvent event) throws FormProcessException {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
@Override
public void headSelected(final TableActionEvent event) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
}