cdc.applic.dictionaries.edit.events.EnRemoveEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-dictionaries-edit Show documentation
Show all versions of cdc-applic-dictionaries-edit Show documentation
Applicabilities Dictionaries Edition.
package cdc.applic.dictionaries.edit.events;
import cdc.applic.dictionaries.edit.EnAbstractElement;
public class EnRemoveEvent extends EnEvent {
protected EnRemoveEvent(EnAbstractElement target) {
super(target);
}
public static EnRemoveEvent of(EnAbstractElement target) {
return new EnRemoveEvent(target);
}
}