comparison src/ch/ethz/ssh2/PtySettings.java @ 307:071eccdff8ea ganymed

fix java formatting
author Carl Byington <carl@five-ten-sg.com>
date Wed, 30 Jul 2014 14:16:58 -0700
parents 91a31873c42a
children
comparison
equal deleted inserted replaced
305:d2b303406d63 307:071eccdff8ea
8 * PTY settings for a SSH session. Zero dimension parameters are ignored. The character/row dimensions 8 * PTY settings for a SSH session. Zero dimension parameters are ignored. The character/row dimensions
9 * override the pixel dimensions (when nonzero). Pixel dimensions refer to 9 * override the pixel dimensions (when nonzero). Pixel dimensions refer to
10 * the drawable area of the window. The dimension parameters are only 10 * the drawable area of the window. The dimension parameters are only
11 * informational. The encoding of terminal modes (parameter 11 * informational. The encoding of terminal modes (parameter
12 * <code>terminal_modes</code>) is described in RFC4254. 12 * <code>terminal_modes</code>) is described in RFC4254.
13 * 13 *
14 * @author Christian 14 * @author Christian
15 */ 15 */
16 public class PtySettings 16 public class PtySettings {
17 { 17 /**
18 /** 18 * TERM environment variable value (e.g., vt100)
19 * TERM environment variable value (e.g., vt100) 19 */
20 */ 20 public String term;
21 public String term;
22 21
23 /** 22 /**
24 * Terminal width, characters (e.g., 80) 23 * Terminal width, characters (e.g., 80)
25 */ 24 */
26 public int term_width_characters; 25 public int term_width_characters;
27 26
28 /** 27 /**
29 * Terminal height, rows (e.g., 24) 28 * Terminal height, rows (e.g., 24)
30 */ 29 */
31 public int term_height_characters; 30 public int term_height_characters;
32 31
33 /** 32 /**
34 * Terminal width, pixels (e.g., 640) 33 * Terminal width, pixels (e.g., 640)
35 */ 34 */
36 public int term_width_pixels; 35 public int term_width_pixels;
37 36
38 /** 37 /**
39 * Terminal height, pixels (e.g., 480) 38 * Terminal height, pixels (e.g., 480)
40 */ 39 */
41 public int term_height_pixels; 40 public int term_height_pixels;
42 41
43 /** 42 /**
44 * Encoded terminal modes 43 * Encoded terminal modes
45 */ 44 */
46 public byte[] terminal_modes; 45 public byte[] terminal_modes;
47 } 46 }