Hello!

I am currently developing a special behaviour when a tablemodel has been
updated and I couldn't find an alternative for a deprecated constant.

    tableModel.addTableModelListener(new ITableModelListener() {
      public void tableChanged(TableModelEvent event) {
        if (event.getType() == UlcEvent.MODEL_UPDATE) {
          doSomethingUseful();
        }
       }
    });

... where "UlcEvent.MODEL_UPDATE" is due UlcEvent deprecated. Can you
please tell me where to find the constant to equalize "getType()"? The
apidocs doesn't show any alternative to me.


Thanks & best regards,
Daniel

Reply via email to