package eu.dnetlib.shared;

import java.io.Serializable;

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

public class Meas extends JavaScriptObject implements Serializable{
	
	protected Meas(){}
	
	public final native String getName()/*-{
		return this.name;
	}-*/;

	public final native String getData()/*-{
		return this.data;
	}-*/;

	public final native String getType()/*-{
		return this.type;
	}-*/;
	
	public final native String getExtra_Type()/*-{
		return this.extra_type;
	}-*/;
	
	public final native String getAgg()/*-{
		return this.agg;
	}-*/;

}