All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ioc.commons.impl.android.common.util.ObservableChange Maven / Gradle / Ivy

package org.ioc.commons.impl.android.common.util;

import java.util.Collection;

import org.ioc.commons.model.features.ObservableOperation;

public class ObservableChange {

	private ObservableOperation operation;
	private Collection elements;
	private Integer index;
	
	public ObservableChange(ObservableOperation operation, Collection elements) {
		this.operation = operation;
		this.elements = elements;
	}
	
	public ObservableChange(ObservableOperation operation, Collection elements, Integer index) {
		super();
		this.operation = operation;
		this.elements = elements;
		this.index = index;
	}

	public ObservableOperation getOperation() {
		return operation;
	}
	
	public Collection getElements() {
		return elements;
	}

	public Integer getIndex() {
		return index;
	}

	public void setIndex(Integer index) {
		this.index = index;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy