Java compatible tool for drawing graphs

can some one suggest me a tool that can be used to draw complex graph like structures...these graphs depict sensors in a wireless sensor network...
can jsim be used to draw these graphs?

can some one suggest me a tool that can be used to
draw complex graph like structures...these graphs
depict sensors in a wireless sensor network...http://openjgraph.sourceforge.net/
http://www.google.com/search?hl=en&q=graph+draw+java&btnG=Google+Search
can jsim be used to draw these graphs?I don't know. You can ask the people that created jsim.

Similar Messages

  • A visual tool for drawing queries (query plans) in StreamInsight

    Is there any visual tool for drawing queries in StreamInsight (like StreamBase)? Is there any plan for it (from Microsoft or third parties)?

    No and not that I am aware of.
    DevBiker (aka J Sawyer)
    Microsoft MVP - Sql Server (StreamInsight)
    If I answered your question, please mark as answer.
    If my post was helpful, please mark as helpful.

  • Class for drawing graphs??

    hello out there,
    is there a class in java how is able to draw graphs (like f(x)=x^2)??
    thanks for your help

    import java.awt.*;
    import java.awt.geom.*;
    import javax.swing.*;
    public class GraphingTest
        public static void main(String[] args)
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.getContentPane().add(new GraphingTestPanel());
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
    class GraphingTestPanel extends JPanel
        final int PAD;
        public GraphingTestPanel()
            PAD = 20;
            setBackground(Color.white);
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            double w = getWidth();
            double h = getHeight();
            double yInc = (h - 2*PAD)/20.0;
            double xInc = (w - 2*PAD)/20.0;
            // ordinate
            g2.draw(new Line2D.Double(w/2, PAD, w/2, h - PAD));
            // tick marks and labels
            double x = w/2, y = PAD;
            for(int i = 0; i <= 20; i++)
                g2.draw(new Line2D.Double(x - 2, y, x + 2, y));
                if(i % 5 == 0 && i != 10)
                    g2.drawString(String.valueOf(10 - i), (int)(x + 5), (int)(y + 4));
                y += yInc;
            // abcissa
            g2.draw(new Line2D.Double(PAD, h/2, w - PAD, h/2));
            // tick marks and labels
            x = PAD; y = h/2;
            for(int i = 0; i <= 20; i++)
                g2.draw(new Line2D.Double(x, y - 2, x, y + 2));
                if(i % 5 == 0 && i != 10)
                    g2.drawString(String.valueOf(i - 10), (int)(x - 9), (int)(y + 12));
                x += xInc;
            // plot function y = x^2;
            g2.setPaint(Color.red);
            for(int i = -10; i <=10; i++)
                double square = i * i * yInc;
                //double linear = i * yInc;
                //double constant = /*constant ==*/ 3 * yInc;
                //y = h/2 - (square + linear + constant);
                y = h/2 - square;
                x = w/2 + i * xInc;
                g2.fill(new Ellipse2D.Double(x - 2, y - 2, 4, 4));
    }

  • Java development tool for optimalization of the code

    I'm searching for a program, that would detect not used variables, methods, etc. in Java code. Can you help me to find such?

    Why do you want a program to cover up poor program design?
    The best solution to your problem is: don't declare variables you don't use, and don't write methods you don't use.
    Additionally, you shouldn't copy and paste other code. If you must, read other people's code to get a good idea of how it works, then do it for yourself, if not just for the sake of keeping organized and not having any unused stuff.
    As far as speed optimization goes (I know that's not what your question was about, but, for your information), you can compile with the -O option to take care of that. If you are worried about class file size, you can compile with the -g:none option to remove debugging information.
    Jason

  • Tools for Java

    Anybody kowns if exists a tool for drawing screens (in graphical mode, like cut and paste components swing or awt) giving the java source code on result ?

    Why don't you use JBuilder or the open source and free Netbeans?? By using e.g. Netbeans, you can drag and drop components on your Applet or Frame. Code is automatically generated.
    I don't know if a tool exists that can ONLY be used for creating code for your User Interface, if that was your question...
    Good luck!

  • Ide Or Tool  for Flash Development

    I am very much interested in learning Flash .
    I am basically a Java J2EE Programmer with knowledge in Flex 3 .
    I want to start learning Flash , when going through introduction tutorials in Flash i see that there is a IDE being used for Flash programming .please tell me what is the name of this IDE , so that i can download this from Internet and start practicing .
    Please see the picture attached of this tuorial , but the author has forgot to  mention on what IDE these steps are to be done .
    (He is asking to select a Line tool for drawing straight lines )
    Please help what is the IDE or tool needed to do this steps .

    You can download flash Cs5 from adobe website from download section and start going

  • Java GUI development for UML

    Hi,
    I am developing a GUI for an application that allows users to draw workflows and manipulate them. The workflow diagram is similar to UML class diagrams where you can draw boxes and lines connecting them, moving them around using a mouse, editing their properties, etc. My experience in Java is quite limited. Can anyone tell me how to achieve this? Thanks a lot for your help.
    frank

    can you tell me about your experience of develop a tool for draw workflows.
    did you found any library to help you to create that???

  • Need information on open source testing tools for ADF web applications

    Hi experts,
    I need to investigate on new feasible open source Java testing tools for testing ADF web applications. I have tried to google a lot but getting confused.
    My requirements as as under:
    1. The tool must be open source.
    2. It should be easy to understand and to work upon by the tester and developers.
    Selenium based testing approach is already in place for testing the application but need to search for tools other than Selenium which shall prove suitable for testing ADF applications. Kindly let me know your inputs / suggestions.
    Thanks a lot in advance.
    Neelanand

    Hi,
    Have a look at JMeter http://jakarta.apache.org/jmeter/index.html
    1. The tool must be open source.It is.
    2. It should be easy to understand and to work upon by the tester and developers.I guess it is.
    There are some specifics in configuring it for ADF, but Chris Muir wrote a nice blog about how it's done, check it out http://one-size-doesnt-fit-all.blogspot.com/2010/04/configuring-apache-jmeter-specifically.html
    Pedja

  • GUI Tool for Image Analysis (delimited ascii file)

    i've created a Java GUI Tool for Image Analysis. It does length calculation and locate the coordinate of centroid of an image...the problem now is how do i save the results in a delimited ascii file??

    Create a FileOutputStream, use that to construct a PrintWriter, then use the PrintWriter as you use System.out. Print out the data, then append the delimiter manually after each set of data.
    To get the file, the simplest ways would be to hard code an output file name or at least have a text field so the user can enter it. If you want it to look more professional, use a JFileChooser.
    I hope this helps!
    -JBoeing

  • Help||||||||how to draw graphs in java

    dear all
    i m new to the java technology.i am at present working on aproject in which i need to draw graphs.these graphs will show the graphs for past one month,past six month and past one year records display.can u suuggest me where to get the help and how to get the sample sorce code for that.thanx
    regards
    sheetal

    There are a couple of Open Source projects for graphing in Java on Sourceforge, try:
    http://sourceforge.net/projects/jopenchart/
    http://sourceforge.net/projects/jfreechart/
    I haven't used them myself, but I intend to look closer in the future...

  • A tool for editing javadoc in .java files

    Hi
    i am looking for a tool that can be use for editing the javadoc in the .java files. it should edit constructors, methods and fields.
    if you know such tool please send me a link.
    Regards
    y.l.

    We list some standalone solutions on the Javadoc FAQ.
    (I have not tried any of these)
    http://java.sun.com/j2se/javadoc/faq/index.html#G
    - Utility for writing doc comments: Doc+.
    - Tool that simplifies the process of writing doc comments: DocWiz.
    - Tool for generating formated Javadoc comments: CommentMaster.
    - Tool for editing Javadoc comments using a word processor-like view: XMLmind XML Editor.
    -Doug Kramer
    Javadoc team

  • A tool for merging java code

    Hi,
    I m in need of a tool for merging java code.Sould be a free ware.
    Please suggest me.

    Look at this link : http://www.prescient.com/prod02.htm
    Is this what you mean?
    There is a trial version available.

  • XJC Tool - For building Java classes from Schema

    Hi all,
    I am using XJC tool for Building java classes from Schema.
    Can we have any other tool for generating java classes from Schema?
    Thanks in advance,
    typurohit

    Solved my own problem and forgot to post the answer: the "xsd:import" is also considered as a targetNamespace, so each xsd:import needs a package specified as well when using oracg. It would be helpful if the Oracle documentation had stated that, but it does not point this out.

  • Why do we need IDE or tools for java card programming?

    Hi,
    I am a newbie to java card, using java card kit tools themself, we can test and burn the code into card right?
    then why do we need IDE for java card, please correct me , if i am wrong,
    Thanks in advance,
    Sri.

    Dear Sri,
    We have compiler, linker etc for every language starting of from C or C++ or Java. JDK has all the tools necessary to develop and run a Java program. Similarly Java Card Development Kit has all the tools for developing and deploying a Java Card applet. But what an IDE does is too integrate all these tools and make it easier for the JavaCard programmer to develop his applets. Just like Eclipse is used for Java applet development.And not everytime the code is burned to the card. Its only during masking code is burned to the card, i.e if u can call it burning. Masking makes an applet permanent on the card.

  • Draw graph in Origin for assistance Labview

    Hellou,
    I try draw graph in Origin for assistance Labview. In Labview I connect and create new instance Origin template. Template file (.OPJ) was created before. When data is completed in sheet then I draw graph in Origin. But I cant use OA_NewEmptyGraph.vi because is it to create new graph. I try draw graph into to template graph.
    In labview I find for sheets OA_FindWorksheet.vi this is find sheet, but a cant find some "OA_FindGraph.vi" is this exists or realized else?
    Thanks
    Norbert
    Solved!
    Go to Solution.

    Hi Norbert,
    your question seems to be related to LabVIEW, while you have erroneously posted it in the LabWindows/CVI forum...

Maybe you are looking for

  • I have uploaded a few of my own CD's to iTunes. How do I get the artwork to match the album

    On my old iMac, I had the feature of attaching artwork to albums, simply called 'Get Artwork' and it would automatically attach itself to whichever album I was either playing, or selected.. That feature doesn't seem to apply now. Is it a copyright is

  • Is it possible to use a 5500 WLC and a 2500 WLC as failover?

    I am curious to know if there are any technical issues with this design. The 5500 WLC would be the primary and 2500 WLC would be the secondary. The only need for the secondary would be in the event of failure of the primary, and support needs when do

  • Data level security in ldap

    Hi Experts, I am new to obiee can you any one explain how to give data level security if we use LDAP authentication it would be great help for me. thanks in advance. reg, jell

  • How to use Query Builder as a component inside our applications?

    I am very new to Apex, but I loved it until now :) After my first experience I am thinking to advice Apex as an Oracle database reporting environment to some of our marketing and sales guys. These guys are familiar to basic SQL and table, index conce

  • Scrolling through the menu 4th Gen.

    I am not sure if my ipod is working correctly. I touch "menu" and a variety of choices are presented. I assume I am supposed to draw my thumb or finger down to the desired item. How do I enter my choice? After I have drawn my thumb over the center bu