cdc.applic.dictionaries.edit.events.EnCreateEvent 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 EnCreateEvent extends EnEvent {
protected EnCreateEvent(EnAbstractElement target) {
super(target);
}
public static EnCreateEvent of(EnAbstractElement target) {
return new EnCreateEvent(target);
}
}