Project

General

Profile

1
package eu.dnetlib.client.widgets;
2

    
3
import com.google.gwt.core.client.JavaScriptObject;
4

    
5
/**
6
 * Created by stefania on 4/17/15.
7
 */
8
public class CKEditorJSO extends JavaScriptObject {
9

    
10
    protected CKEditorJSO() {}
11

    
12
    public final native void setUiColor(String color) /*-{
13
        this.setUiColor(color);
14
    }-*/;
15

    
16
    public final native void setData(String data) /*-{
17
        this.setData(data);
18
    }-*/;
19

    
20
    public final native String getData() /*-{
21
        return this.getData();
22
    }-*/;
23

    
24
    public final native void destroy() /*-{
25
        this.destroy();
26
    }-*/;
27
}
(7-7/21)