/**
  * Creates a new HeadlinesEntry object
  *
  * @param MailPage $mailPage The mail page to which this entry belongs
  * @param unknown $headlinesEntryDiv A reference to the main div of this headline
  */
 public function __construct(MailPage $mailPage, $headlinesEntryDiv)
 {
     parent::__construct($mailPage->getTestCase(), $headlinesEntryDiv);
     $this->mailPage = $mailPage;
 }
 public function __construct(MailPage $mailPage, $contactsAutocompleteFrame)
 {
     parent::__construct($mailPage->getTestCase(), $contactsAutocompleteFrame);
     $this->mailPage = $mailPage;
 }
 /**
  * Creates a new WidgetMessages object
  *
  * @param MailPage $mailPage The mail page to which this object belongs
  * @param unknown $rightSection A reference to the right section that
  * contains the widget
  */
 public function __construct(MailPage $mailPage, $rightSection)
 {
     parent::__construct($mailPage->getTestCase(), $rightSection);
     $this->mailPage = $mailPage;
 }
 /**
  * Creates a new Addressbook object
  *
  * @param AddressbookPage $addressbookPage The Addressbook page to which this entry belongs
  * @param unknown $contactListItemDiv A reference to the main div of this addressbook contact
  */
 public function __construct(AddressbookPage $addressbookPage, $contactListItemDiv)
 {
     parent::__construct($addressbookPage->getTestCase(), $contactListItemDiv);
     $this->addressbookPage = $addressbookPage;
 }
 /**
  * Creates a new WidgetContactDetails object
  *
  * @param AddressbookPage $addressbookPage The Addressbook page in which the contact details are being displayed
  * @param unknown $rightSection The section element where the contact details is being displayed
  */
 public function __construct(AddressbookPage $addressbookPage, $rightSection)
 {
     parent::__construct($addressbookPage->getTestCase(), $rightSection);
     $this->addressbookPage = $addressbookPage;
 }