12 lines
353 B
Java
12 lines
353 B
Java
package org.w3c.dom.events;
|
|
|
|
import org.w3c.dom.views.AbstractView;
|
|
|
|
public interface TextEvent extends UIEvent {
|
|
String getData();
|
|
|
|
void initTextEvent(String str, boolean z, boolean z2, AbstractView abstractView, String str2);
|
|
|
|
void initTextEventNS(String str, String str2, boolean z, boolean z2, AbstractView abstractView, String str3);
|
|
}
|