scaffold.libs_as.feathers.controls.IScreen.as Maven / Gradle / Ivy
/*
Feathers
Copyright 2012-2015 Bowler Hat LLC. All Rights Reserved.
This program is free software. You can redistribute and/or modify it in
accordance with the terms of the accompanying license agreement.
*/
package feathers.controls
{
import feathers.core.IFeathersControl;
/**
* A screen to display in a screen navigator.
*
* @see feathers.controls.StackScreenNavigator
* @see feathers.controls.ScreenNavigator
*/
public interface IScreen extends IFeathersControl
{
/**
* The identifier for the screen. This value is passed in by the
* ScreenNavigator
when the screen is instantiated.
*/
function get screenID():String;
/**
* @private
*/
function set screenID(value:String):void;
/**
* The screen navigator that is currently displaying this screen.
*/
function get owner():Object;
/**
* @private
*/
function set owner(value:Object):void;
}
}