Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/*******************************************************************************
3
 *  Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
 *  Licensed under the Apache License, Version 2.0 (the "License");
5
 *
6
 *  You may not use this file except in compliance with the License.
7
 *  You may obtain a copy of the License at: http://aws.amazon.com/apache2.0
8
 *  This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
9
 *  CONDITIONS OF ANY KIND, either express or implied. See the License for the
10
 *  specific language governing permissions and limitations under the License.
11
 * *****************************************************************************
12
 */
13
 
14
 
15
/**
16
 *  @see CheckoutByAmazon_Service_Model
17
 */
18
require_once ('CheckoutByAmazon/Service/Model.php');
19
 
20
 
21
        private   valueField;
22
 
23
/**
24
 * CheckoutByAmazon_Service_Model_PositiveInteger
25
 *
26
 * Properties:
27
 * <ul>
28
 *
29
 *
30
 * </ul>
31
 */
32
class CheckoutByAmazon_Service_Model_PositiveInteger extends CheckoutByAmazon_Service_Model
33
{
34
 
35
 
36
    /**
37
     * Construct new CheckoutByAmazon_Service_Model_PositiveInteger
38
     *
39
     * @param mixed $data DOMElement or Associative Array to construct from.
40
     *
41
     * Valid properties:
42
     * <ul>
43
     *
44
     *
45
     * </ul>
46
     */
47
    public function __construct($Data = null)
48
    {
49
        $this->_fields = array (
50
        );
51
        parent::__construct($Data);
52
    }
53
 
54
 
55
/**
56
 * Gets the value of the Value property.
57
 *
58
 * @return  Value
59
 */
60
public function getValue()
61
{
62
    return $this->_value;
63
}
64
 
65
/**
66
 * Sets the value of the Value property.
67
 *
68
 * @param  Value
69
 * @return void
70
 */
71
public function setValue($value)
72
{
73
    $this->_Value = $value;
74
    return;
75
}
76
 
77
 
78
/**
79
 * Checks if Value property is set
80
 *
81
 * @return bool true if Value property is set
82
 */
83
public function isSetValue()
84
{
85
    return !is_null($this->_value);
86
 
87
}
88
 
89
 
90
}
91
?>