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

com.arca.std.utils.timer.TimeAction Maven / Gradle / Ivy

There is a newer version: 0.1.1
Show newest version
package com.arca.std.utils.timer;

import java.util.ArrayList;

public class TimeAction extends Timer {
	/*========================
	////FIELDS & CONSTANTS////
	========================*/
	private ArrayList mTimeLines;

	/*========================
	///////CONSTRUCTORS///////
	========================*/
	public TimeAction(float pDuration) {
		super(pDuration);
	}

	/*=======================
	//////////METHODS////////
	=======================*/
	@Override
	protected void onUpdatedProgress(float pProgress) {
		super.onUpdatedProgress(pProgress);
		
		for (TimeLine timeLine : mTimeLines) {
			timeLine.setProgress(pProgress);
		}
	}

	/*========================
	 ////GETTERS & SETTERS////
	========================*/
	public ArrayList getTimeLines() {
		return mTimeLines;
	}

	/*========================
	/////NESTED CLASSES////////
	========================*/

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy