Package com.aspose.tasks
Class VbaReference
- java.lang.Object
-
- com.aspose.tasks.VbaReference
-
- All Implemented Interfaces:
com.aspose.ms.System.IEquatable<VbaReference>
public final class VbaReference extends Object implements com.aspose.ms.System.IEquatable<VbaReference>
Represents a reference of the
VbaProject
.
-
-
Constructor Summary
Constructors Constructor Description VbaReference()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(VbaReference other)
Returns a value indicating whether this instance is equal to the specifiedVbaReference
object.boolean
equals(Object obj)
Returns a value indicating whether this instance is equal to the specifiedVbaReference
object.String
getLibIdentifier()
Gets identifier of the library.String
getName()
Gets name of VBA reference.int
hashCode()
Returns a hash code value for thisVbaReference
.void
setName(String value)
Sets name of VBA reference.
-
-
-
Method Detail
-
equals
public final boolean equals(VbaReference other)
Returns a value indicating whether this instance is equal to the specified
VbaReference
object.- Parameters:
other
- The specifiedVbaReference
object to compare with this instance.- Returns:
- Returns true if this instance is equal to the specified
VbaReference
object; otherwise, false.
-
equals
public boolean equals(Object obj)
Returns a value indicating whether this instance is equal to the specified
VbaReference
object.- Specified by:
equals
in interfacecom.aspose.ms.System.IEquatable<VbaReference>
- Overrides:
equals
in classObject
- Parameters:
obj
- The specifiedVbaReference
object to compare with this instance.- Returns:
- Returns true if this instance is equal to the specified
VbaReference
object; otherwise, false.
-
getLibIdentifier
public final String getLibIdentifier()
Gets identifier of the library.
- Returns:
- identifier of the library.
-
getName
public final String getName()
Gets name of VBA reference.
- Returns:
- name of VBA reference.
-
setName
public final void setName(String value)
Sets name of VBA reference.
- Parameters:
value
- name of VBA reference.
-
hashCode
public int hashCode()
Returns a hash code value for this
VbaReference
.
-
-