-
public final class PrivatePropertyDescriptorObject private field descriptor.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final RemoteObjectvalueprivate final RemoteObjectgetprivate final RemoteObjectset
-
Constructor Summary
Constructors Constructor Description PrivatePropertyDescriptor(String name, RemoteObject value, RemoteObject get, RemoteObject set)
-
Method Summary
Modifier and Type Method Description final Stringcomponent1()final RemoteObjectcomponent2()final RemoteObjectcomponent3()final RemoteObjectcomponent4()final PrivatePropertyDescriptorcopy(String name, RemoteObject value, RemoteObject get, RemoteObject set)final StringgetName()Private property name. final RemoteObjectgetValue()The value associated with the private property. final RemoteObjectgetGet()A function which serves as a getter for the private property, or undefinedif there is no getter (accessor descriptors only).final RemoteObjectgetSet()A function which serves as a setter for the private property, or undefinedif there is no setter (accessor descriptors only).-
-
Constructor Detail
-
PrivatePropertyDescriptor
PrivatePropertyDescriptor(String name, RemoteObject value, RemoteObject get, RemoteObject set)
-
-
Method Detail
-
component1
final String component1()
-
component2
final RemoteObject component2()
-
component3
final RemoteObject component3()
-
component4
final RemoteObject component4()
-
copy
final PrivatePropertyDescriptor copy(String name, RemoteObject value, RemoteObject get, RemoteObject set)
-
getValue
final RemoteObject getValue()
The value associated with the private property.
-
getGet
final RemoteObject getGet()
A function which serves as a getter for the private property, or
undefinedif there is no getter (accessor descriptors only).
-
getSet
final RemoteObject getSet()
A function which serves as a setter for the private property, or
undefinedif there is no setter (accessor descriptors only).
-
-
-
-