Code Duplication    Length = 57-57 lines in 2 locations

MetadataV3/src/edm/ssdl/TOnActionType.php 1 location

@@ 11-67 (lines=57) @@
8
 *
9
 * XSD Type: TOnAction
10
 */
11
class TOnActionType
12
{
13
14
    /**
15
     * @property string $action
16
     */
17
    private $action = null;
18
19
    /**
20
     * @property \MetadataV3\edm\ssdl\TDocumentationType $documentation
21
     */
22
    private $documentation = null;
23
24
    /**
25
     * Gets as action
26
     *
27
     * @return string
28
     */
29
    public function getAction()
30
    {
31
        return $this->action;
32
    }
33
34
    /**
35
     * Sets a new action
36
     *
37
     * @param string $action
38
     * @return self
39
     */
40
    public function setAction($action)
41
    {
42
        $this->action = $action;
43
        return $this;
44
    }
45
46
    /**
47
     * Gets as documentation
48
     *
49
     * @return \MetadataV3\edm\ssdl\TDocumentationType
50
     */
51
    public function getDocumentation()
52
    {
53
        return $this->documentation;
54
    }
55
56
    /**
57
     * Sets a new documentation
58
     *
59
     * @param \MetadataV3\edm\ssdl\TDocumentationType $documentation
60
     * @return self
61
     */
62
    public function setDocumentation(\MetadataV3\edm\ssdl\TDocumentationType $documentation)
63
    {
64
        $this->documentation = $documentation;
65
        return $this;
66
    }
67
}
68

MetadataV3/src/edm/ssdl/TPropertyRefType.php 1 location

@@ 11-67 (lines=57) @@
8
 *
9
 * XSD Type: TPropertyRef
10
 */
11
class TPropertyRefType
12
{
13
14
    /**
15
     * @property string $name
16
     */
17
    private $name = null;
18
19
    /**
20
     * @property \MetadataV3\edm\ssdl\TDocumentationType $documentation
21
     */
22
    private $documentation = null;
23
24
    /**
25
     * Gets as name
26
     *
27
     * @return string
28
     */
29
    public function getName()
30
    {
31
        return $this->name;
32
    }
33
34
    /**
35
     * Sets a new name
36
     *
37
     * @param string $name
38
     * @return self
39
     */
40
    public function setName($name)
41
    {
42
        $this->name = $name;
43
        return $this;
44
    }
45
46
    /**
47
     * Gets as documentation
48
     *
49
     * @return \MetadataV3\edm\ssdl\TDocumentationType
50
     */
51
    public function getDocumentation()
52
    {
53
        return $this->documentation;
54
    }
55
56
    /**
57
     * Sets a new documentation
58
     *
59
     * @param \MetadataV3\edm\ssdl\TDocumentationType $documentation
60
     * @return self
61
     */
62
    public function setDocumentation(\MetadataV3\edm\ssdl\TDocumentationType $documentation)
63
    {
64
        $this->documentation = $documentation;
65
        return $this;
66
    }
67
}
68