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

org.vudroid.core.models.CurrentPageModel Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package org.vudroid.core.models;

import org.vudroid.core.events.CurrentPageListener;
import org.vudroid.core.events.EventDispatcher;

public class CurrentPageModel extends EventDispatcher
{
    private int currentPageIndex;

    public void setCurrentPageIndex(int currentPageIndex)
    {
        if (this.currentPageIndex != currentPageIndex)
        {
            this.currentPageIndex = currentPageIndex;
            dispatch(new CurrentPageListener.CurrentPageChangedEvent(currentPageIndex));
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy