Extension SDK 9.0.5

oracle.jdeveloper.audit.service
Interface AuditModelListener

All Superinterfaces:
java.util.EventListener

public interface AuditModelListener
extends java.util.EventListener

A listener for changes to an Audit model.


Method Summary
 void childInserted(AuditModel model, java.lang.Object parent, int childIndex, java.lang.Object child, boolean modelChanging)
          Reports an AuditModel child inserted event.
 void childRemoved(AuditModel model, java.lang.Object parent, int childIndex, java.lang.Object child, boolean modelChanging)
          Reports an AuditModel child removed event.
 void columnAdded(AuditModel model, Attribute column, int index)
          Reports an AuditModel model column added event.
 void columnRemoved(AuditModel model, Attribute column, int index)
          Reports an AuditModel model column removed event.
 void modelChanged(AuditModel model)
          Reports an AuditModel model resorted event.
 void modelCleared(AuditModel model)
          Reports an AuditModel model cleared event.
 void valueChanged(AuditModel model, java.lang.Object row, int columnIndex, boolean modelChanging)
          Reports an AuditModel value changed event.
 

Method Detail

modelCleared

public void modelCleared(AuditModel model)
Reports an AuditModel model cleared event.


columnAdded

public void columnAdded(AuditModel model,
                        Attribute column,
                        int index)
Reports an AuditModel model column added event.


columnRemoved

public void columnRemoved(AuditModel model,
                          Attribute column,
                          int index)
Reports an AuditModel model column removed event.


modelChanged

public void modelChanged(AuditModel model)
Reports an AuditModel model resorted event.


childInserted

public void childInserted(AuditModel model,
                          java.lang.Object parent,
                          int childIndex,
                          java.lang.Object child,
                          boolean modelChanging)
Reports an AuditModel child inserted event.


childRemoved

public void childRemoved(AuditModel model,
                         java.lang.Object parent,
                         int childIndex,
                         java.lang.Object child,
                         boolean modelChanging)
Reports an AuditModel child removed event.


valueChanged

public void valueChanged(AuditModel model,
                         java.lang.Object row,
                         int columnIndex,
                         boolean modelChanging)
Reports an AuditModel value changed event.


Extension SDK

 

Copyright © 1997, 2004, Oracle. All rights reserved.