﻿package com.adobe.captivate.widgets
{
	public class CPContainerProperties
	{
		public function CPContainerProperties(containerTypeVal:String="")
		{
			this._containerType = containerTypeVal;
		}
		/**
     	* @private
     	*/
		private var _containerType:String;

		public function get containerType():String
		{
			return _containerType;
		}
	}
}
