TestFlip3DViewState.java :  » Graphics-3D-2D-OpenGL » android-flip3d » pl » polidea » androidflip3d » testingactivity » Android Open Source

Android Open Source » Graphics 3D 2D OpenGL » android flip3d 
android flip3d » pl » polidea » androidflip3d » testingactivity » TestFlip3DViewState.java
package pl.polidea.androidflip3d.testingactivity;

import pl.polidea.androidflip3d.Flip3DViewState;

/**
 * Test state with color.
 * 
 * @author potiuk
 * 
 */
public class TestFlip3DViewState extends Flip3DViewState {

    private final int color;

    public TestFlip3DViewState(final int id, final int color) {
        super(id);
        this.color = color;
    }

    public int getColor() {
        return color;
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.