Class AssemblyData


  • public class AssemblyData
    extends java.lang.Object
    A simple collection of .NET assembly data as collected from GrokAssembly.
    Author:
    Jeremy Long
    • Constructor Summary

      Constructors 
      Constructor Description
      AssemblyData()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addNamespace​(java.lang.String namespace)
      Adds a name space.
      java.lang.String getComments()
      Get the value of comments.
      java.lang.String getCompanyName()
      Get the value of companyName.
      java.lang.String getError()
      Get the value of error.
      java.lang.String getFileDescription()
      Get the value of fileDescription.
      java.lang.String getFileName()
      Get the value of fileName.
      java.lang.String getFileVersion()
      Get the value of fileVersion.
      java.lang.String getFullName()
      Get the value of fullName.
      java.lang.String getInternalName()
      Get the value of internalName.
      java.lang.String getLegalCopyright()
      Get the value of legalCopyright.
      java.lang.String getLegalTrademarks()
      Get the value of legalTrademarks.
      java.util.List<java.lang.String> getNamespaces()
      Get the value of namespaces.
      java.lang.String getOriginalFilename()
      Get the value of originalFilename.
      java.lang.String getProductName()
      Get the value of productName.
      java.lang.String getProductVersion()
      Get the value of productVersion.
      java.lang.String getWarning()
      Get the value of warning.
      void setComments​(java.lang.String comments)
      Set the value of comments.
      void setCompanyName​(java.lang.String companyName)
      Set the value of companyName.
      void setError​(java.lang.String error)
      Set the value of error.
      void setFileDescription​(java.lang.String fileDescription)
      Set the value of fileDescription.
      void setFileName​(java.lang.String fileName)
      Set the value of fileName.
      void setFileVersion​(java.lang.String fileVersion)
      Set the value of fileVersion.
      void setFullName​(java.lang.String fullName)
      Set the value of fullName.
      void setInternalName​(java.lang.String internalName)
      Set the value of internalName.
      void setLegalCopyright​(java.lang.String legalCopyright)
      Set the value of legalCopyright.
      void setLegalTrademarks​(java.lang.String legalTrademarks)
      Set the value of legalTrademarks.
      void setOriginalFilename​(java.lang.String originalFilename)
      Set the value of originalFilename.
      void setProductName​(java.lang.String productName)
      Set the value of productName.
      void setProductVersion​(java.lang.String productVersion)
      Set the value of productVersion.
      void setWarning​(java.lang.String warning)
      Set the value of warning.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AssemblyData

        public AssemblyData()
    • Method Detail

      • getError

        public java.lang.String getError()
        Get the value of error.
        Returns:
        the value of error
      • setError

        public void setError​(java.lang.String error)
        Set the value of error.
        Parameters:
        error - new value of error
      • getCompanyName

        public java.lang.String getCompanyName()
        Get the value of companyName.
        Returns:
        the value of companyName
      • setCompanyName

        public void setCompanyName​(java.lang.String companyName)
        Set the value of companyName.
        Parameters:
        companyName - new value of companyName
      • getProductName

        public java.lang.String getProductName()
        Get the value of productName.
        Returns:
        the value of productName
      • setProductName

        public void setProductName​(java.lang.String productName)
        Set the value of productName.
        Parameters:
        productName - new value of productName
      • getProductVersion

        public java.lang.String getProductVersion()
        Get the value of productVersion.
        Returns:
        the value of productVersion
      • setProductVersion

        public void setProductVersion​(java.lang.String productVersion)
        Set the value of productVersion.
        Parameters:
        productVersion - new value of productVersion
      • getComments

        public java.lang.String getComments()
        Get the value of comments.
        Returns:
        the value of comments
      • setComments

        public void setComments​(java.lang.String comments)
        Set the value of comments.
        Parameters:
        comments - new value of comments
      • getFileDescription

        public java.lang.String getFileDescription()
        Get the value of fileDescription.
        Returns:
        the value of fileDescription
      • setFileDescription

        public void setFileDescription​(java.lang.String fileDescription)
        Set the value of fileDescription.
        Parameters:
        fileDescription - new value of fileDescription
      • getFileName

        public java.lang.String getFileName()
        Get the value of fileName.
        Returns:
        the value of fileName
      • setFileName

        public void setFileName​(java.lang.String fileName)
        Set the value of fileName.
        Parameters:
        fileName - new value of fileName
      • getFileVersion

        public java.lang.String getFileVersion()
        Get the value of fileVersion.
        Returns:
        the value of fileVersion
      • setFileVersion

        public void setFileVersion​(java.lang.String fileVersion)
        Set the value of fileVersion.
        Parameters:
        fileVersion - new value of fileVersion
      • getInternalName

        public java.lang.String getInternalName()
        Get the value of internalName.
        Returns:
        the value of internalName
      • setInternalName

        public void setInternalName​(java.lang.String internalName)
        Set the value of internalName.
        Parameters:
        internalName - new value of internalName
      • getLegalCopyright

        public java.lang.String getLegalCopyright()
        Get the value of legalCopyright.
        Returns:
        the value of legalCopyright
      • setLegalCopyright

        public void setLegalCopyright​(java.lang.String legalCopyright)
        Set the value of legalCopyright.
        Parameters:
        legalCopyright - new value of legalCopyright
      • getLegalTrademarks

        public java.lang.String getLegalTrademarks()
        Get the value of legalTrademarks.
        Returns:
        the value of legalTrademarks
      • setLegalTrademarks

        public void setLegalTrademarks​(java.lang.String legalTrademarks)
        Set the value of legalTrademarks.
        Parameters:
        legalTrademarks - new value of legalTrademarks
      • getOriginalFilename

        public java.lang.String getOriginalFilename()
        Get the value of originalFilename.
        Returns:
        the value of originalFilename
      • setOriginalFilename

        public void setOriginalFilename​(java.lang.String originalFilename)
        Set the value of originalFilename.
        Parameters:
        originalFilename - new value of originalFilename
      • getFullName

        public java.lang.String getFullName()
        Get the value of fullName.
        Returns:
        the value of fullName
      • setFullName

        public void setFullName​(java.lang.String fullName)
        Set the value of fullName.
        Parameters:
        fullName - new value of fullName
      • getNamespaces

        public java.util.List<java.lang.String> getNamespaces()
        Get the value of namespaces.
        Returns:
        the value of namespaces
      • addNamespace

        public void addNamespace​(java.lang.String namespace)
        Adds a name space.
        Parameters:
        namespace - the namespace to add
      • getWarning

        public java.lang.String getWarning()
        Get the value of warning.
        Returns:
        the value of warning
      • setWarning

        public void setWarning​(java.lang.String warning)
        Set the value of warning.
        Parameters:
        warning - new value of warning