| View previous topic :: View next topic |
| Author |
Message |
ilyas Guest
|
Posted: Tue Dec 07, 2004 3:16 pm Post subject: Stubs and Skeleton Eclipse |
|
|
Hai,
How can i create stubs and skeleton(s) in the Eclipse 3.0 IDE?
I have a implementation class and i'll create stubs and skeletons (for
RMI connection)
Thanx for all suggestions.
Greatings from Holland,
ilyas
|
|
| Back to top |
|
 |
Dirk Gerrit Oort Guest
|
Posted: Tue Dec 07, 2004 4:59 pm Post subject: Re: Stubs and Skeleton Eclipse |
|
|
put the rmic under External Tools and set the working dir and the arguments.
when the rmic has done his work press f5(refresh) and you will see the stub
and skeleton in the package explorer
--
D.G. Oort
"ilyas" <iyspost (AT) mail (DOT) com> schreef in bericht
news:c7f56407.0412070716.18faf514 (AT) posting (DOT) google.com...
| Quote: | Hai,
How can i create stubs and skeleton(s) in the Eclipse 3.0 IDE?
I have a implementation class and i'll create stubs and skeletons (for
RMI connection)
Thanx for all suggestions.
Greatings from Holland,
ilyas
|
|
|
| Back to top |
|
 |
Martin Girschick Guest
|
Posted: Wed Dec 29, 2004 9:11 am Post subject: Re: Stubs and Skeleton Eclipse |
|
|
Dirk Gerrit Oort <oortdg (AT) hccnet (DOT) nl> wrote:
| Quote: | put the rmic under External Tools and set the working dir and the arguments.
when the rmic has done his work press f5(refresh) and you will see the stub
and skeleton in the package explorer
|
This only works for selected files if I'm not mistaken. If you have to
rebuilt the RMI files for several classes I recommend creating an
Ant-Script for that:
<?xml version="1.0" encoding="UTF-8"?>
<project name="x" default="rmic" basedir="." >
<property file="build.properties"/>
<target name="rmic">
<rmic base="${bin.dir}" sourcebase="src.rmi" debug="true" includes="
PUT CLASSES HERE
/>
</target>
</project>
|
|
| Back to top |
|
 |
|