Class GlobalSymbol

  • All Implemented Interfaces:
    Symbol

    public class GlobalSymbol
    extends java.lang.Object
    implements Symbol
    The global symbol implementation class
    • Method Detail

      • checkIsValid

        public boolean checkIsValid()
        Description copied from interface: Symbol
        Check whether this symbol is still valid (i.e., deleted).
        Specified by:
        checkIsValid in interface Symbol
        Returns:
        true if valid or false if deleted.
      • isExternal

        public boolean isExternal()
        Description copied from interface: Symbol
        Returns true if this an external symbol.
        Specified by:
        isExternal in interface Symbol
        Returns:
        true if this an external symbol.
        See Also:
        Address.isExternalAddress()
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • equals

        public boolean equals​(java.lang.Object obj)
        Overrides:
        equals in class java.lang.Object
      • getName

        public java.lang.String getName()
        Specified by:
        getName in interface Symbol
      • getName

        public java.lang.String getName​(boolean includeNamespace)
        Description copied from interface: Symbol
        Returns the symbol name, optionally prepended with the namespace path.
        Specified by:
        getName in interface Symbol
        Parameters:
        includeNamespace - if true, the namespace path is prepended to the name.
      • getPath

        public java.lang.String[] getPath()
        Description copied from interface: Symbol
        Gets the full path name for this symbol as an ordered array of strings ending with the symbol name. The global symbol will return an empty array.
        Specified by:
        getPath in interface Symbol
      • getParentSymbol

        public Symbol getParentSymbol()
        Description copied from interface: Symbol
        Returns namespace symbol of the namespace containing this symbol
        Specified by:
        getParentSymbol in interface Symbol
      • isDescendant

        public boolean isDescendant​(Namespace namespace)
        Description copied from interface: Symbol
        Returns true if the given namespace symbol is a descendant of this symbol.
        Specified by:
        isDescendant in interface Symbol
        Parameters:
        namespace - to test as descendant symbol of this Symbol
        Returns:
        true if this symbol is an ancestor of the given namespace symbol
      • isValidParent

        public boolean isValidParent​(Namespace parent)
        Description copied from interface: Symbol
        Returns whether the given parent is valid for this Symbol.
        Specified by:
        isValidParent in interface Symbol
      • hasReferences

        public boolean hasReferences()
        Specified by:
        hasReferences in interface Symbol
      • getReferences

        public Reference[] getReferences​(TaskMonitor monitor)
        Description copied from interface: Symbol
        Returns all memory references to the address of this symbol. If you do not have a TaskMonitor instance, then you can pass TaskMonitorAdapter.DUMMY_MONITOR or null.
        Specified by:
        getReferences in interface Symbol
        Parameters:
        monitor - the monitor that is used to report progress and to cancel this potentially long-running call
      • getAssociatedReferences

        public Reference[] getAssociatedReferences()
      • setName

        public void setName​(java.lang.String newName,
                            SourceType source)
                     throws DuplicateNameException,
                            InvalidInputException
        Description copied from interface: Symbol
        Sets the name this symbol. If this symbol is dynamic, then the name is set and the symbol is no longer dynamic.
        Specified by:
        setName in interface Symbol
        Parameters:
        newName - the new name for this symbol.
        source - the source of this symbol
        Some symbol types, such as function symbols, can set the source to Symbol.DEFAULT.
        Throws:
        DuplicateNameException - if name already exists as the name of another symbol or alias.
        InvalidInputException - if alias contains blank characters, is zero length, or is null
      • delete

        public boolean delete()
        Description copied from interface: Symbol
        Delete the symbol and its associated resources.
        Specified by:
        delete in interface Symbol
      • isPinned

        public boolean isPinned()
        This returns false, since the global symbol isn't associated with a specific program memory address.
        Specified by:
        isPinned in interface Symbol
      • setPinned

        public void setPinned​(boolean pinned)
        This method doesn't apply to the global symbol, since it isn't associated with a specific program memory address. Therefore calling it will have no effect.
        Specified by:
        setPinned in interface Symbol
        Parameters:
        pinned - true indicates this symbol is anchored to its address. false indicates this symbol is not anchored to its address.
      • setSource

        public void setSource​(SourceType source)
        This method doesn't apply to the global symbol, since a program always has a global symbol and it can't be renamed. Therefore calling it will throw an UnsupportedOperationException.
        Specified by:
        setSource in interface Symbol
        Parameters:
        source - the source of this symbol: Symbol.DEFAULT, Symbol.IMPORTED, Symbol.ANALYSIS, or Symbol.USER_DEFINED.
        Throws:
        java.lang.UnsupportedOperationException - whenever called.
      • getSource

        public SourceType getSource()
        This method doesn't apply to the global symbol, since a program always has a global symbol and it can't be renamed. Therefore calling it will throw an UnsupportedOperationException. return source the source of this symbol: default, imported, analysis, or user defined.
        Specified by:
        getSource in interface Symbol
        Returns:
        the source of this symbol
        Throws:
        java.lang.UnsupportedOperationException - whenever called.
      • isDynamic

        public boolean isDynamic()
        Specified by:
        isDynamic in interface Symbol
      • isPrimary

        public boolean isPrimary()
        Specified by:
        isPrimary in interface Symbol
      • setPrimary

        public boolean setPrimary()
        Description copied from interface: Symbol
        Sets this symbol to be primary. All other symbols at the same address will be set to !primary. Only applies to non-function symbols.
        Specified by:
        setPrimary in interface Symbol
        Returns:
        returns true if the symbol was not primary and now it is, otherwise false
      • getID

        public long getID()
        Specified by:
        getID in interface Symbol
      • getObject

        public java.lang.Object getObject()
        Specified by:
        getObject in interface Symbol
      • isGlobal

        public boolean isGlobal()
        Specified by:
        isGlobal in interface Symbol