com.github.highcharts4gwt.model.highcharts.option.mock.seriesheatmap.MockEvents Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of highcharts Show documentation
Show all versions of highcharts Show documentation
GWT wrapper for highcharts library.
package com.github.highcharts4gwt.model.highcharts.option.mock.seriesheatmap;
import com.github.highcharts4gwt.model.highcharts.option.api.seriesheatmap.Events;
/**
*
*/
public class MockEvents
implements Events
{
private String genericField;
private String functionAsString;
public String getFieldAsJsonObject(String fieldName) {
return genericField;
}
public MockEvents setFieldAsJsonObject(String fieldName, String fieldValueAsJsonObject) {
this.genericField = fieldValueAsJsonObject;
return this;
}
public String getFunctionAsString(String fieldName) {
return functionAsString;
}
public MockEvents setFunctionAsString(String fieldName, String functionAsString) {
this.functionAsString = functionAsString;
return this;
}
}