< prev index next >

host/src/main/java/org/openjdk/skara/host/PullRequest.java

Print this page

 92     String getSourceRef();
 93 
 94     /**
 95      * Returns the name of the ref the request is intended to be merged into.
 96      * @return
 97      */
 98     String getTargetRef();
 99 
100     /**
101      * Returns the current head of the ref the request is intended to be merged into.
102      * @return
103      */
104     Hash getTargetHash();
105 
106     /**
107      * Title of the request.
108      * @return
109      */
110     String getTitle();
111 






112     /**
113      * The main body of the request.
114      * @return
115      */
116     String getBody();
117 
118     /**
119      * Update the main body of the request.
120      * @param body
121      */
122     void setBody(String body);
123 
124     /**
125      * All comments on the issue, in ascending creation time order.
126      * @return
127      */
128     List<Comment> getComments();
129 
130     /**
131      * Posts a new comment.

 92     String getSourceRef();
 93 
 94     /**
 95      * Returns the name of the ref the request is intended to be merged into.
 96      * @return
 97      */
 98     String getTargetRef();
 99 
100     /**
101      * Returns the current head of the ref the request is intended to be merged into.
102      * @return
103      */
104     Hash getTargetHash();
105 
106     /**
107      * Title of the request.
108      * @return
109      */
110     String getTitle();
111 
112     /**
113      * Update the title of the request.
114      * @param title
115      */
116     void setTitle(String title);
117 
118     /**
119      * The main body of the request.
120      * @return
121      */
122     String getBody();
123 
124     /**
125      * Update the main body of the request.
126      * @param body
127      */
128     void setBody(String body);
129 
130     /**
131      * All comments on the issue, in ascending creation time order.
132      * @return
133      */
134     List<Comment> getComments();
135 
136     /**
137      * Posts a new comment.
< prev index next >