function h = uitabgroup(varargin)
%UITABGROUP Container to manage tabs.
%   UITABGROUP('PropertyName1, Value1, 'PropertyName2', Value2, ...)
%   creates a container for hosting uitabs.  Tne tabgroup will display
%   and manage the tabs.
%
%   HANDLE = UITABGROUP(...)
%   creates a tabgroup component and returns a handle to it in HANDLE.
%
%   Run GET(HANDLE) to see a list of properties and their current values.
%   Execute SET(HANDLE) to see a list of object properties and their legal
%   values. See the reference guide for detailed property information.
%
%   WARNING: These APIs are subject to change in future releases.
%
%   See also UITAB.

%   Copyright 2004 The MathWorks, Inc.
%   $Revision: 1.1.6.1 $  $Date: 2004/12/20 16:45:54 $

if feature('JavaFigures') == 0
    error('Uitabgroup is not supported on this platform.');    
end

h = uitools.uitabgroup(varargin{:});
h = double(h);
