Eclipse RCP Book


 
Thread Tools Search this Thread
Top Forums Programming Eclipse RCP Book
# 1  
Old 10-29-2011
Eclipse RCP Book

Hi guys

I want to start studding Eclipse RCP with this book
Eclipse Rich Client Platform (2nd Edition) from Addison-Wesley Professional

the second edition released in May 2010. Some guys in amazon commented that the book is deprecated because eclipse 3.7 is out and the book is talking about eclipse 3.1. Is that true? I mean RCP changed a lot and the book is useless?? If it is useless what is the best resource to study RCP?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Eclipse for Solaris 11

I downloaded eclipse for x86. However when I try to start it I get the following:- ld.so.1: eclipse: fatal: relocation error: file /usr/lib/firefox//libxul.so: symbol __1cHmozillaJHashBytes6FpkvI_I_: referenced symbol not found Killed This file libxul.so is in /usr/lib/firefox. How do I get my... (6 Replies)
Discussion started by: Tenyhwa
6 Replies

2. Shell Programming and Scripting

rcp -r || cp -r

what different between two instruction cp -r rcp -r (1 Reply)
Discussion started by: tamer11007
1 Replies

3. Programming

Integrating Jconsole with Eclipse

Hi Guys, I was hoping someone has integrated Eclipse with jconsole to monitor their applications. I have not seen this in action . Any help is much appreciated http://images.devshed.com/fds/smilies/smile.gif Thanks (0 Replies)
Discussion started by: aish11
0 Replies

4. Solaris

Eclipse for Solaris

i am trying to install weblogic 10.3 but for some component need eclipse from where i can download eclipse and how to install it (2 Replies)
Discussion started by: xxmasrawy
2 Replies

5. HP-UX

Eclipse 3.1 on HP-UX 11i

Hey guys how do you run eclipse on HP-UX 11i? there's a startup.jar and an eclipse file ( which is not an executable ) I get different errors try to run the jar file with different java versions. I have all the possible java vm's installed. (0 Replies)
Discussion started by: binary0x01
0 Replies

6. Programming

debug with eclipse

Hi, i' m using eclipse 3.2.2 on ubuntu. When i debug a program (C language) i cannot see any variable in the variables view. From the console (debug perspective) i can see the message: no source file named class.c. What is the problem??? thanks (1 Reply)
Discussion started by: littleboyblu
1 Replies

7. Programming

eclipse console

I have a C program which ends when user types ctrl-c. this program works fine from terminal but when i launch it from eclipse i can't terminate it correctly with ctrl-c because the console does not read the ctrl-c input command. Can anyone help me?? Thanks (3 Replies)
Discussion started by: littleboyblu
3 Replies

8. UNIX for Advanced & Expert Users

How to link CVS to eclipse...?

Hi All, can any body help me out on conecting CVS to eclipse. Thanks in advance KUSHAGRA (2 Replies)
Discussion started by: kushagrak
2 Replies

9. Programming

related to Eclipse

I wanted to install similar automake & friends that exist in kdevelop in Eclipse also. There is a project related to this here and the plugins are at Download section. If everyone did it or might do it in the future, I am interested to know how ! If there is somebody else that has another option... (0 Replies)
Discussion started by: mihk
0 Replies

10. UNIX for Dummies Questions & Answers

Rcp

I am trying to set up RCP so root can access a few machines for file transfer. On the target machine, I have set up a .RHOSTS file that looks like: 10.33.1.59 root However when I try to use RCP to copy a file to this machine, I get permission denied. Is it possible since another user is... (1 Reply)
Discussion started by: hshapiro
1 Replies
Login or Register to Ask a Question
RCP(1)							    BSD General Commands Manual 						    RCP(1)

NAME
rcp -- remote file copy SYNOPSIS
rcp [-46p] file1 file2 rcp [-46pr] file ... directory DESCRIPTION
rcp copies files between machines. Each file or directory argument is either a remote file name of the form ``rname@rhost:path'', or a local file name (containing no ':' (colon) characters, or a '/' (slash) before any ':' (colon) characters). The rhost can be an IPv4 or an IPv6 address string. Since IPv6 addresses already contain ':' (colon) characters, an IPv6 address string must be enclosed between '[' (left square bracket) and ']' (right square bracket) characters. Otherwise, the first occurrence of a ':' (colon) character would be interpreted as the separator between the rhost and the path. For example, [2001:DB8::800:200C:417A]:tmp/file Options: -4 Use IPv4 addresses only. -6 Use IPv6 addresses only. -p The -p option causes rcp to attempt to preserve (duplicate) in its copies the modification times and modes of the source files, ignor- ing the umask. By default, the mode and owner of file2 are preserved if it already existed; otherwise the mode of the source file mod- ified by the umask(2) on the destination host is used. -r If any of the source files are directories, rcp copies each subtree rooted at that name; in this case the destination must be a direc- tory. If path is not a full path name, it is interpreted relative to the login directory of the specified user ruser on rhost, or your current user name if no other remote user name is specified. A path on a remote host may be quoted (using , ", or ') so that the metacharacters are interpreted remotely. rcp does not prompt for passwords; it performs remote execution via rsh(1), and requires the same authorization. rcp handles third party copies, where neither source nor target files are on the current machine. SEE ALSO
cp(1), ftp(1), rcmd(1), rlogin(1), rsh(1), rcmd(3), hosts.equiv(5), rhosts(5), environ(7) HISTORY
The rcp utility appeared in 4.2BSD. The version of rcp described here has been reimplemented with Kerberos in 4.3BSD-Reno. BUGS
Doesn't detect all cases where the target of a copy might be a file in cases where only a directory should be legal. Is confused by any output generated by commands in a .login, .profile, or .cshrc file on the remote host. The destination user and hostname may have to be specified as ``rhost.rname'' when the destination machine is running the 4.2BSD version of rcp. BSD
March 8, 2005 BSD