PHP Интерфейс Storm\Core\Object\IDataProperty

Автор: Elliot Levin ([email protected])
Наследование: extends Storm\Core\Object\IProperty
Показать файл Открыть проект

Открытые методы

Метод Описание
GetValue ( object $Entity ) : mixed This method should be implemented such that it ges the value of the entity entity property
IsIdentity ( ) : boolean Whether or not the property is part of the entity's identity.
ReviveValue ( mixed $PropertyValue, object $Entity ) : void This method should be implemented such that it sets the value of the entity with the given property value

Описание методов

GetValue() публичный Метод

This method should be implemented such that it ges the value of the entity entity property
public GetValue ( object $Entity ) : mixed
$Entity object The entity to get the value from
Результат mixed The property value

IsIdentity() публичный Метод

Whether or not the property is part of the entity's identity.
public IsIdentity ( ) : boolean
Результат boolean

ReviveValue() публичный Метод

This method should be implemented such that it sets the value of the entity with the given property value
public ReviveValue ( mixed $PropertyValue, object $Entity ) : void
$PropertyValue mixed The property value to set
$Entity object The entity
Результат void