TransparencySupporter

Inheritance: java.lang.Object

public class TransparencySupporter

The object supporting transparency.

Constructors

ConstructorDescription
TransparencySupporter()

Methods

MethodDescription
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:

ParameterTypeDescription
valuefloatThe opacity value.

equals(Object o)

public boolean equals(Object o)

Check if objects are equal.

Parameters:

ParameterTypeDescription
ojava.lang.ObjectThe other object.

Returns: boolean - The equality comparison result.

hashCode()

public int hashCode()

Get hash code of the current object.

Returns: int - The hash code.