Graph drawing tool in Java for Linux
Hi, I am looking for graphical program in Java which can draw directed graph (or other graph-like structures) as a typical MS directory pattern: + root | +--+ directory1 || | + directory2 || || || || || |+ subdirectory1 ... Any help will be appreciated. Jacob Nikom -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Graph drawing tool in Java for Linux
Quoting Jacob Nikom <[EMAIL PROTECTED]>: > I am looking for graphical program in Java which can draw directed > graph Isn't that a JTree? Robbie This message was sent by Easymail - http://www.easynet.co.uk/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Graph drawing tool in Java for Linux
With your example below, your are limiting your graphs to trees. For example, how are you going to draw the edge from "root" to "subdirectory1"? Anyway, there's nothing linux-specific about this. Jacob Nikom wrote: > > Hi, > > I am looking for graphical program in Java which can draw directed graph > > (or other graph-like structures) as a typical MS directory pattern: > > + root > | > +--+ directory1 > || > | + directory2 > || > || > || > || > || > |+ subdirectory1 > ... > > Any help will be appreciated. > > Jacob Nikom > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] -- Homepage: http://homepages.tig.com.au/~jmsalvo/ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
javaps: Java Linux process show (ps)
If you're running Java applications on a Linux machine and would like to see more detailed process information, you may download a small bourne shell script I've written for that purpose. More information at the URL: http://www.cs.columbia.edu/~akonstan/javaps Alexander V. Konstantinou -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: java developer feedback
Hi I've been at comdex this week so I'm just catching up on email, I hope we can resolve redhats distribution issue soon. The fonts problem on linux will improve with the availability of truetype rendering in Xfree, but we should also continue to work on the fonts supplied with java regards calvin >I program desktop graphics for a large company (Disney). We develop in >part on Linux and deploy on SGI, but possibly linux in the future. >Elsewhere in the company there are mac clients with sun servers, etc. > >My two issues: > >1) FONTS. The fonts look different on every platform, and they >only look good on windows. In many cases this destroys the >cross-platform promise of Swing - at best the interfaces look >unprofessional; sometimes we need to have different fonts on >the different platforms (the font that works on one is clipped by >the textbox on the other). > Naively I would have thought that SUN could pay a graphic artist >to develop a "metal" font and bundle this with swing. With so >much of the rest of the font rendering done in java, I might think >that this would give a uniform appearance? > But I know that I'm ignorant of X/truetype/other font rendering issues. > >2) Distribute the jre. This isn't so much of a company specific >issue, but I would like to see the jre widely distributed so that >the promise of the java "platform" becomes a reality. Asking users >to download 5megs is asking a lot if they have a modem. >There's been progress on this recently with caldera/turbolinux/etc., >but RedHat, by far the biggest linux distrib, does not include >anything other than kaffe. But, they include every other computer >language on the planet, and they include StarOffice5.1 (before >openoffice) and other non-GPL apps on their extra's disk. Why can't >they include a jre? > -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: Graph drawing tool in Java for Linux
Robbie Baldock wrote: > Quoting Jacob Nikom <[EMAIL PROTECTED]>: > > > I am looking for graphical program in Java which can draw directed > > graph > > Isn't that a JTree? > > Robbie > > This message was sent by Easymail - http://www.easynet.co.uk/ > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] Not exactly. Each node can have more than one parent. You can convert it to the tree-like representation introducing proxy nodes. However, you have to keep track of them. For example, if you remove the real node, you have to remove the proxy node as well, but this node will be in another location in the tree. Regards, Jacob Nikom -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
UML designer...
Is ther a UML desinger like visio for Linux, so we can avoid doing all those calcs and plans on the paper? -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: UML designer...
On Fri, 17 Nov 2000, Erick wrote: > > > Is ther a UML desinger like visio for Linux, so we can avoid doing all those > calcs and plans on the paper? > Together/J has a linux version. I haven't used it, though. -- Joi EllisSoftware Engineer Aravox Technologies [EMAIL PROTECTED], [EMAIL PROTECTED] No matter what we think of Linux versus FreeBSD, etc., the one thing I really like about Linux is that it has Microsoft worried. Anything that kicks a monopoly in the pants has got to be good for something. - Chris Johnson -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
localhost ip
dear all how can i get the localhost ip in java . thanks -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: UML designer...
Erick wrote: > Is ther a UML desinger like visio for Linux, so we can avoid doing all those > calcs and plans on the paper? Well, while not specifically for Linux, you could try Dia, which is now part of the Gnome project. It also has a design goal of being like Visio. http://www.lysator.liu.se/~alla/dia/ Since this is a Java mailing list, you could also try ArgoUML: http://argouml.tigris.org/ - Greg -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: localhost ip
not loopback ip,but ethernet ip thanks -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
Re: localhost ip
[EMAIL PROTECTED] wrote: > dear all >how can i get the localhost ip in java . InetAddress.getLocalHost() Nathan > >thanks > > -- > To UNSUBSCRIBE, email to [EMAIL PROTECTED] > with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED] -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]