blob: 5f08f6ceab57b87cc7abb67387a810b210983191 [file] [log] [blame]
////////////////////////////////////////////////////////////////////////////////
//
// Licensed to the Apache Software Foundation (ASF) under one or more
// contributor license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright ownership.
// The ASF licenses this file to You under the Apache License, Version 2.0
// (the "License"); you may not use this file except in compliance with
// the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
////////////////////////////////////////////////////////////////////////////////
package mx.events
{
/**
* The InvalidateRequestData class defines constants for the values
* of the <code>data</code> property of a SWFBridgeRequest object when
* used with the <code>SWFBridgeRequest.INVALIDATE_REQUEST</code> request.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public final class InvalidateRequestData
{
include "../core/Version.as";
//--------------------------------------------------------------------------
//
// Class constants
//
//--------------------------------------------------------------------------
//----------------------------------
// INVALIDATE request bits
//----------------------------------
/**
* Bit to indicate the request handler should invalidate
* their properties.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public static const PROPERTIES:uint = 0x0002;
/**
* Bit to indicate the request handler should invalidate
* their size.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public static const SIZE:uint = 0x0004;
/**
* Bit to indicate the request handler should invalidate
* their display list.
*
* @langversion 3.0
* @playerversion Flash 9
* @playerversion AIR 1.1
* @productversion Flex 3
*/
public static const DISPLAY_LIST:uint = 0x0001;
}
}