Mercurial > 510Connectbot
diff src/ch/ethz/ssh2/PtySettings.java @ 308:42b15aaa7ac7 ganymed
merge
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 30 Jul 2014 14:21:50 -0700 |
parents | 071eccdff8ea |
children |
line wrap: on
line diff
--- a/src/ch/ethz/ssh2/PtySettings.java Wed Jul 30 13:38:04 2014 -0700 +++ b/src/ch/ethz/ssh2/PtySettings.java Wed Jul 30 14:21:50 2014 -0700 @@ -10,38 +10,37 @@ * the drawable area of the window. The dimension parameters are only * informational. The encoding of terminal modes (parameter * <code>terminal_modes</code>) is described in RFC4254. - * + * * @author Christian */ -public class PtySettings -{ - /** - * TERM environment variable value (e.g., vt100) - */ - public String term; +public class PtySettings { + /** + * TERM environment variable value (e.g., vt100) + */ + public String term; - /** - * Terminal width, characters (e.g., 80) - */ - public int term_width_characters; + /** + * Terminal width, characters (e.g., 80) + */ + public int term_width_characters; + + /** + * Terminal height, rows (e.g., 24) + */ + public int term_height_characters; - /** - * Terminal height, rows (e.g., 24) - */ - public int term_height_characters; - - /** - * Terminal width, pixels (e.g., 640) - */ - public int term_width_pixels; + /** + * Terminal width, pixels (e.g., 640) + */ + public int term_width_pixels; - /** - * Terminal height, pixels (e.g., 480) - */ - public int term_height_pixels; + /** + * Terminal height, pixels (e.g., 480) + */ + public int term_height_pixels; - /** - * Encoded terminal modes - */ - public byte[] terminal_modes; + /** + * Encoded terminal modes + */ + public byte[] terminal_modes; }