| pnuts.lang.Property
All known Subclasses: org.pnuts.lib.constant, pnuts.lang.Package,
Property | public interface Property (Code) | | In Pnuts, access to a property of an object implements this interface causes
a call of methods in this interface. See Pnuts Language Specification
for details.
version: 1.1 author: Toyokazu Tomatsu |
Method Summary | |
Object | get(String name, Context context) This method defines the behavior of the following expression.
aProperty
. | void | set(String name, Object value, Context context) This method defines the behavior of the following expression.
aProperty
. |
get | Object get(String name, Context context)(Code) | | This method defines the behavior of the following expression.
aProperty
.
name
Parameters: name - the name. Parameters: context - the context in which the expression is evaluated. |
set | void set(String name, Object value, Context context)(Code) | | This method defines the behavior of the following expression.
aProperty
.
name
=
value
Parameters: name - the name. Parameters: value - the value. Parameters: context - the context in which the expression is evaluated. |
|
|