public class PrivatePropertyDescriptor extends Object
| Constructor and Description |
|---|
PrivatePropertyDescriptor() |
| Modifier and Type | Method and Description |
|---|---|
RemoteObject |
getGet()
A function which serves as a getter for the private property, or `undefined` if there is no
getter (accessor descriptors only).
|
String |
getName()
Private property name.
|
RemoteObject |
getSet()
A function which serves as a setter for the private property, or `undefined` if there is no
setter (accessor descriptors only).
|
RemoteObject |
getValue()
The value associated with the private property.
|
void |
setGet(RemoteObject get)
A function which serves as a getter for the private property, or `undefined` if there is no
getter (accessor descriptors only).
|
void |
setName(String name)
Private property name.
|
void |
setSet(RemoteObject set)
A function which serves as a setter for the private property, or `undefined` if there is no
setter (accessor descriptors only).
|
void |
setValue(RemoteObject value)
The value associated with the private property.
|
public String getName()
public void setName(String name)
public RemoteObject getValue()
public void setValue(RemoteObject value)
public RemoteObject getGet()
public void setGet(RemoteObject get)
public RemoteObject getSet()
public void setSet(RemoteObject set)
Copyright © 2021 Kenan Klisura. All rights reserved.