Interface IReviewChangelist

  • All Known Implementing Classes:
    ReviewChangelist

    public interface IReviewChangelist
    Describes a Perforce review changelist record.

    Full semantics can be found in the associated full Perforce p4 command line documentation for the 'p4 review' command.

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int getChangelistId()
      Gets the changelist id.
      java.lang.String getEmail()
      Gets the user's email address.
      java.lang.String getName()
      Gets the user's real name.
      java.lang.String getUser()
      Gets the user's user name.
      void setChangelistId​(int changelistId)
      Sets the changelist id.
      void setEmail​(java.lang.String email)
      Sets the user's email address.
      void setName​(java.lang.String name)
      Sets the user's real name
      void setUser​(java.lang.String user)
      Sets the user's user name.
    • Method Detail

      • getChangelistId

        int getChangelistId()
        Gets the changelist id.
        Returns:
        the changelist id
      • setChangelistId

        void setChangelistId​(int changelistId)
        Sets the changelist id.
        Parameters:
        changelistId - the new changelist id
      • getUser

        java.lang.String getUser()
        Gets the user's user name.
        Returns:
        the user's user name
      • setUser

        void setUser​(java.lang.String user)
        Sets the user's user name.
        Parameters:
        user - the user's user name
      • getEmail

        java.lang.String getEmail()
        Gets the user's email address.
        Returns:
        the user's email address
      • setEmail

        void setEmail​(java.lang.String email)
        Sets the user's email address.
        Parameters:
        email - the user's email address
      • getName

        java.lang.String getName()
        Gets the user's real name.
        Returns:
        the user's real name
      • setName

        void setName​(java.lang.String name)
        Sets the user's real name
        Parameters:
        name - the user's real name