I have to write a telnet in eclipse rcp. So can anybody tell me which control should i use?
here control is for eg: swt.Text, swt.StyledText.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It depends on many things. If you want to allow for any form of formatting in the output – like support vt100 – then a
StyledTextcontrol is good. If you want to keep it as simple as possible, I would probably use aTextfor the current input, and a multi-lineTextfor the output.If you have more freedom in your RCP application, consider adding the
Consoleview to the application. This will give a very polished way of adding telnet support…