org.wicketstuff.egrid.model.GridOperationData Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of wicketstuff-editable-grid Show documentation
                Show all versions of wicketstuff-editable-grid Show documentation
Add/Edit/Delete functionality all at once
                
             The newest version!
        
        package org.wicketstuff.egrid.model;
import java.io.Serializable;
/**
 * 
 * @author Nadeem Mohammad
 *
 */
public class GridOperationData implements Serializable
{
	private static final long serialVersionUID = 1L;
	private OperationType operationType;
	private D data;
	public GridOperationData(final OperationType newOperationType, final D newData)
	{
		this.operationType = newOperationType;
		this.data			=  newData;
	}
	
	public OperationType getOperationType()
	{
		return operationType;
	}
	public void setOperationType(OperationType operationType)
	{
		this.operationType = operationType;
	}
	public D getData()
	{
		return data;
	}
	public void setData(D data)
	{
		this.data = data;
	}
}
     © 2015 - 2025 Weber Informatics LLC | Privacy Policy