//////////////////////////////////////////////////////////////////////////////// // // 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.core { /** * The ApplicationDomainTarget class defines the possible values for the * applicationDomainTarget property of the RSLData * class. Each application domain target specifies a relative application * domain that is resolved at runtime. * * @see mx.core.RSLData * * @langversion 3.0 * @playerversion Flash 10.2 * @playerversion AIR 2.5 * @productversion Flex 4.5 */ public final class ApplicationDomainTarget { include "../core/Version.as"; //-------------------------------------------------------------------------- // // Class constants // //-------------------------------------------------------------------------- /** * The default behavior for RSL loading is to load an RSL as high in * the parent module factory chain as possible. In order to load an RSL * into a parent module factory, that module factory must have been * compiled with that RSL specified in the compiler options. If no parent module * factories were compiled with that RSL , then the RSL will be loaded in * the application domain of the module factory loading the RSL. * * @langversion 3.0 * @playerversion Flash 10.2 * @playerversion AIR 2.5 * @productversion Flex 4.5 */ public static const DEFAULT:String = "default"; /** * The application domain of the current module factory. * * @langversion 3.0 * @playerversion Flash 10.2 * @playerversion AIR 2.5 * @productversion Flex 4.5 */ public static const CURRENT:String = "current"; /** * The application domain of the parent module factory. * * @langversion 3.0 * @playerversion Flash 10.2 * @playerversion AIR 2.5 * @productversion Flex 4.5 */ public static const PARENT:String = "parent"; /** * The application domain of the top-level module factory. * * @langversion 3.0 * @playerversion Flash 10.2 * @playerversion AIR 2.5 * @productversion Flex 4.5 */ public static const TOP_LEVEL:String = "top-level"; } }