TransparencySupporter
Contents
[
Hide
]Inheritance: java.lang.Object
public class TransparencySupporter
The object supporting transparency.
Constructors
| Constructor | Description | 
|---|---|
| TransparencySupporter() | 
Methods
| Method | Description | 
|---|---|
| getOpacity() | Gets the object’s opacity. | 
| setOpacity(float value) | Sets the object’s opacity. | 
| equals(Object o) | Check if objects are equal. | 
| hashCode() | Get hash code of the current object. | 
TransparencySupporter()
public TransparencySupporter()
getOpacity()
public float getOpacity()
Gets the object’s opacity. The value should be between 0 and 1. Value of 0 means that object is fully visible, value of 1 means the object is fully opaque.
Returns: float - The opacity value.
setOpacity(float value)
public void setOpacity(float value)
Sets the object’s opacity. The value should be between 0 and 1. Value of 0 means that object is fully visible, value of 1 means the object is fully opaque.
Parameters:
| Parameter | Type | Description | 
|---|---|---|
| value | float | The opacity value. | 
equals(Object o)
public boolean equals(Object o)
Check if objects are equal.
Parameters:
| Parameter | Type | Description | 
|---|---|---|
| o | java.lang.Object | The other object. | 
Returns: boolean - The equality comparison result.
hashCode()
public int hashCode()
Get hash code of the current object.
Returns: int - The hash code.