com.perforce.p4java.core
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
 int getChangelistId()
          Gets the changelist id.
 String getEmail()
          Gets the user's email address.
 String getName()
          Gets the user's real name.
 String getUser()
          Gets the user's user name.
 void setChangelistId(int changelistId)
          Sets the changelist id.
 void setEmail(String email)
          Sets the user's email address.
 void setName(String name)
          Sets the user's real name
 void setUser(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

String getUser()
Gets the user's user name.

Returns:
the user's user name

setUser

void setUser(String user)
Sets the user's user name.

Parameters:
user - the user's user name

getEmail

String getEmail()
Gets the user's email address.

Returns:
the user's email address

setEmail

void setEmail(String email)
Sets the user's email address.

Parameters:
user - the user's email address

getName

String getName()
Gets the user's real name.

Returns:
the user's real name

setName

void setName(String name)
Sets the user's real name

Parameters:
name - the user's real name


Copyright © 2015 Perforce Software. All Rights Reserved.