GetCompanyName

Description

Returns the name of the company in the current locale (IBM, in English).

Syntax

Perl

$prodinfo->GetCompanyName(); 
Identifier
Description
prodinfo
A CQProductInfo object.
Return value
A String containing the company name (for example, IBM).

Example

Perl

use CQPerlExt;



my $cqobject = CQClearQuest::Build();

my $prodinfo = $cqobject->CreateProductInfo();

print "CompanyName         = '".$prodinfo->GetCompanyName()."'\n";

CQClearQuest::Unbuild($cqobject); 

Commentaire