Class QSoapParameter
This is the Base Class for ALL classes in the system. It provides
proper error handling of property getters and setters. It also
provides the OverrideAttribute functionality.
-
QBaseClass
-
QSoapParameter
Methods summary
public
|
#
__construct( $strName, $strType, $blnArray, $blnReference )
|
public
|
|
public
mixed
|
#
__get( string $strName )
Override method to perform a property "Get"
This will get the value of $strName
All inhereted objects that call __get() should always fall through
to calling parent::__get() in a try/catch statement catching
for CallerExceptions.
Override method to perform a property "Get"
This will get the value of $strName
All inhereted objects that call __get() should always fall through
to calling parent::__get() in a try/catch statement catching
for CallerExceptions.
Parameters
- $strName
- Name of the property to get
Returns
mixed the returned property
Throws
Overrides
|
public
mixed
|
#
__set( string $strName, string $mixValue )
Override method to perform a property "Set"
This will set the property $strName to be $mixValue
All inhereted objects that call __set() should always fall through
to calling parent::__set() in a try/catch statement catching
for CallerExceptions.
Override method to perform a property "Set"
This will set the property $strName to be $mixValue
All inhereted objects that call __set() should always fall through
to calling parent::__set() in a try/catch statement catching
for CallerExceptions.
Parameters
- $strName
- Name of the property to set
- $mixValue
- New value of the property
Returns
mixed the property that was set
Throws
Overrides
|
public
|
|
public
|
|
public
|
|
public
|
|
public
|
|