1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\Slides;
19
20class TableCell extends \Google\Model
21{
22  /**
23   * @var int
24   */
25  public $columnSpan;
26  protected $locationType = TableCellLocation::class;
27  protected $locationDataType = '';
28  /**
29   * @var int
30   */
31  public $rowSpan;
32  protected $tableCellPropertiesType = TableCellProperties::class;
33  protected $tableCellPropertiesDataType = '';
34  protected $textType = TextContent::class;
35  protected $textDataType = '';
36
37  /**
38   * @param int
39   */
40  public function setColumnSpan($columnSpan)
41  {
42    $this->columnSpan = $columnSpan;
43  }
44  /**
45   * @return int
46   */
47  public function getColumnSpan()
48  {
49    return $this->columnSpan;
50  }
51  /**
52   * @param TableCellLocation
53   */
54  public function setLocation(TableCellLocation $location)
55  {
56    $this->location = $location;
57  }
58  /**
59   * @return TableCellLocation
60   */
61  public function getLocation()
62  {
63    return $this->location;
64  }
65  /**
66   * @param int
67   */
68  public function setRowSpan($rowSpan)
69  {
70    $this->rowSpan = $rowSpan;
71  }
72  /**
73   * @return int
74   */
75  public function getRowSpan()
76  {
77    return $this->rowSpan;
78  }
79  /**
80   * @param TableCellProperties
81   */
82  public function setTableCellProperties(TableCellProperties $tableCellProperties)
83  {
84    $this->tableCellProperties = $tableCellProperties;
85  }
86  /**
87   * @return TableCellProperties
88   */
89  public function getTableCellProperties()
90  {
91    return $this->tableCellProperties;
92  }
93  /**
94   * @param TextContent
95   */
96  public function setText(TextContent $text)
97  {
98    $this->text = $text;
99  }
100  /**
101   * @return TextContent
102   */
103  public function getText()
104  {
105    return $this->text;
106  }
107}
108
109// Adding a class alias for backwards compatibility with the previous class name.
110class_alias(TableCell::class, 'Google_Service_Slides_TableCell');
111