PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / trunk
ShareThis Dashboard for Google Analytics vtrunk
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / lib / analytics-admin / vendor / google / protobuf / src / Google / Protobuf / SourceContext.php
googleanalytics / lib / analytics-admin / vendor / google / protobuf / src / Google / Protobuf Last commit date
Field 3 years ago Internal 2 years ago Any.php 2 years ago Api.php 3 years ago BoolValue.php 3 years ago BytesValue.php 3 years ago Descriptor.php 2 years ago DescriptorPool.php 2 years ago DoubleValue.php 3 years ago Duration.php 3 years ago Enum.php 3 years ago EnumDescriptor.php 2 years ago EnumValue.php 3 years ago EnumValueDescriptor.php 2 years ago Field.php 3 years ago FieldDescriptor.php 2 years ago FieldMask.php 3 years ago Field_Cardinality.php 3 years ago Field_Kind.php 3 years ago FloatValue.php 3 years ago GPBEmpty.php 3 years ago Int32Value.php 3 years ago Int64Value.php 3 years ago ListValue.php 3 years ago Method.php 3 years ago Mixin.php 3 years ago NullValue.php 3 years ago OneofDescriptor.php 2 years ago Option.php 3 years ago SourceContext.php 3 years ago StringValue.php 3 years ago Struct.php 3 years ago Syntax.php 3 years ago Timestamp.php 3 years ago Type.php 3 years ago UInt32Value.php 3 years ago UInt64Value.php 3 years ago Value.php 3 years ago
SourceContext.php
73 lines
1 <?php
2 # Generated by the protocol buffer compiler. DO NOT EDIT!
3 # source: google/protobuf/source_context.proto
4
5 namespace Google\Protobuf;
6
7 use Google\Protobuf\Internal\GPBType;
8 use Google\Protobuf\Internal\RepeatedField;
9 use Google\Protobuf\Internal\GPBUtil;
10
11 /**
12 * `SourceContext` represents information about the source of a
13 * protobuf element, like the file in which it is defined.
14 *
15 * Generated from protobuf message <code>google.protobuf.SourceContext</code>
16 */
17 class SourceContext extends \Google\Protobuf\Internal\Message
18 {
19 /**
20 * The path-qualified name of the .proto file that contained the associated
21 * protobuf element. For example: `"google/protobuf/source_context.proto"`.
22 *
23 * Generated from protobuf field <code>string file_name = 1;</code>
24 */
25 protected $file_name = '';
26
27 /**
28 * Constructor.
29 *
30 * @param array $data {
31 * Optional. Data for populating the Message object.
32 *
33 * @type string $file_name
34 * The path-qualified name of the .proto file that contained the associated
35 * protobuf element. For example: `"google/protobuf/source_context.proto"`.
36 * }
37 */
38 public function __construct($data = NULL) {
39 \GPBMetadata\Google\Protobuf\SourceContext::initOnce();
40 parent::__construct($data);
41 }
42
43 /**
44 * The path-qualified name of the .proto file that contained the associated
45 * protobuf element. For example: `"google/protobuf/source_context.proto"`.
46 *
47 * Generated from protobuf field <code>string file_name = 1;</code>
48 * @return string
49 */
50 public function getFileName()
51 {
52 return $this->file_name;
53 }
54
55 /**
56 * The path-qualified name of the .proto file that contained the associated
57 * protobuf element. For example: `"google/protobuf/source_context.proto"`.
58 *
59 * Generated from protobuf field <code>string file_name = 1;</code>
60 * @param string $var
61 * @return $this
62 */
63 public function setFileName($var)
64 {
65 GPBUtil::checkString($var, True);
66 $this->file_name = $var;
67
68 return $this;
69 }
70
71 }
72
73