Activity Diagram Problem

I cannot place a And Fork/Join object in an activity diagram. The other tools seem to work OK for activity diagrams, but not this one. Am I missing some concept here?

Hi!
Are you actually getting a message displayed when trying to create an AND. There is no special technique, you just need to select it in the component palette and then click on the diagram to be created.
Are you just getting this problem on one diagram or all diagrams?
If you run with jdev.exe rather than jdevw.exe do you get anything printed to the console window?
Thanks,
Lisa
JDev QA

Similar Messages

  • Activity Diagram in Jdeveloper.

    Hi ,
    I am trying to create a activity diagram for representing my requirement.
    I have two separate diagrams. In the MainFLow , i use 'Call Behaviour Action' so that i could call the subFlow. The problem is
    In the MainFlow, i would like to pass the parameters to the SubFlow, to which i have already set 4 parameters.
    Now, I should know, how to assign the values to that parameters from the MainFlow.
    Thanks,
    Sabarisri. N

    Are you dragging from the component palette?
    If so are you seeing a new shape in the App Nav called something like partition0 ?
    If this is the case you can workaround this by clicking on the swimlane in the component palette and then clicking on the surface of the diagram. This works for me, its how I usually create a swimlane.
    Thanks,
    Geoff

  • How to get XML files out of activity diagrams of UML

    Using Rational Rose I have developed a model now I want a way to get XML file for each activity diagram of the model built. This XML file will be the input file for Project Cleveland which instantiates the services according to the documentation in this XMl file

    In the Photos mode go to the View menu and uncheck Event Titles. That will leave you with only thumbnails displayed in the Photos view. However, if you close from that mode and reopen the opening time will be slower since iPhoto has to read and render all of the thumbnails. It can get rather long.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • JDeveloper Activity Diagram Floating Guards

    I am using JDeveloper 11g Release 1 (11.1.1.2.0) to develop an activity diagram.
    The problem I have is that although I am able to add guards to a control flow and drag them to a suitable position, when I save and re-open JDeveloper they guards have moved to a different position.
    Does anybody know How to fix the position of the guard?
    Thanks in advance.

    Hi,
    11.1.1.2 is a very, very, very old release of 11g R1. Have you verified with a newer build 11.1.1.6 or 11.1.1.7 to verify the issue to exist?
    Frank

  • Publishing complete activity diagram

    hello,
    I'm having problems publishing my completed activity diagram. I'm using JDeveloper 10g. When using JDev, the diagram does fit onto one page; however when I opt to publish my diagram and save it as a jpg or png file, the diagram is cut off, leaving part of the diagram off the image. Is there a setting I can change or something I need to do to include the entire diagram onto one image?
    thanks

    Thanks for the diagram, I have filed bug 5003688 for the issue.
    To workaround the issue, you need to move the label of the 'Final' Pseudostate to the left so that the label ends before the end of the Pseudostate. You should find then that the label is displayed properly.
    Regards,
    Lisa
    JDev QA

  • Creating Activity Diagram from existing code in 11g

    Hi,
    How can I create activity diagram for an existing application in 11.1.2.2.0 version?
    -Infy

    Do you mean you select activity diagram in wizard but you see classes (not invocations/partitions etc) on created diagram?
    If so.. it's a design, you just see activity diagram with inappropriate elemnts.
    We support to create any diagram from any elemnts but may be it's better to block diagram creation from not appliable elemnts.

  • Activation lock problem!

    Hello,
    I just got a new iPhone 4s from a friend and I can't get into it because of an activation lock problem. I've already tried to restore it in recovery mode but than I still have to log in to his account. Now i've logged in to his iCloud account and deleted the iPhone using the following instructions:
    Sign in to their iCloud account at www.icloud.com/find.
    Click All Devices to open a list of devices linked to their account, then select the device to be removed. It should show a gray dot or the word “Offline” next to the device name.
    Click "Remove from Account" to remove the device from their account.
    But it seems that I have should done the following instructions, because the iPhone wasn't completely erased yet:
    Sign in to their iCloud account at www.icloud.com/find.
    Click All Devices to open a list of devices linked to their account, then select the device to be removed.
    Click the Erase button to erase all content and settings from the device. When prompted, don't enter a phone number or message. Click Next until the device is erased.
    When the erase is complete, click "Remove from Account" to remove the device from the account.
    The problem is that it's too late for that now, because I already deleted the iPhone from his iCloud... Please help me out here, what can I do to still erase it from iCloud?!
    Greets

    Were you, by chance, running a beta version of iOS 7 on your phone?
    If so, this will be the problem. You will need to log Into the private developers forum athttps://developer.apple.com/support/ios/
    If you are not a developer, you will need to seek help by way of your favourite search site.

  • Activity Box problem

    I am working on an Activity Box problem. I got some errors, Please Help and Thanks in advance!!!
    My program likes:
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    /*ActivityBox Applet */
        public class ActivityBox extends Applet {
    //Declarations
        String panelString = new String("News from the field.");
        String southString = new String("South Button");
        String infoString = new String("Type here.");
        String kbString = new String("East ");
        MousePanel cp = new MousePanel(100,100,panelString);
        MousePanel ep = new MousePanel(100,100, kbString);
        MousePanel np = new MousePanel(50,50);
        MousePanel sp = new MousePanel(100,100);
        MousePanel wp = new MousePanel(100,100,"West - Type here");
        TextField myText = new TextField(infoString);
        Button southButton = new colorChanger(southString);
        colorChanger Blues = new colorChanger(Color.blue);
        buttonListener Zap = new buttonListener(cp, myText, ep);
        kbListener Tap = new kbListener(ep, kbString);
    //init
        public void init() {
         setLayout(new BorderLayout(5,5));
             np.addMouseListener(Blues);
         add("North",np);
             np.add(myText);
         np.setBackground(Color.Cyan);
             sp.addMouseListener(Blues);
             southButton.addActionListener(Zap);
         sp.add(southButton);
         add("South", sp);
         sp.setBackground(Color.Cyan);
             ep.addMouseListener(Blues);
         add("East",ep);
         ep.setBackground(Color.Cyan);
             wp.addMouseListener(Blues);
             wp.addKeyListener(Tap);
            add("West",wp);
         wp.setBackground(Color.Cyan);
             cp.addMouseListener(Blues);
         add("Center",cp);
         cp.setBackground(Color.Cyan);
    /* MousePanel */
    class MousePanel extends Panel {
        public String nameTag = "";
        Dimension myDimension = new Dimension(15,15);
    //Constructor 1 - no name tag
        MousePanel(int h, int w) {
         myDimension.height = h;
         myDimension.width = w;
    //Constructor2 - with name tag
        MousePanel(int h, int w, String nt) {
         myDimension.height = h;
         myDimension.width = w;
         nameTag = nt;
    //paint
        public void paint(Graphics g) {
         g.drawString(nameTag,5,10);
    //change text
        public void changeText(String s){
         nameTag = s;
         repaint();
        public Dimension getPreferredSize(){
         retrun myDimension;
    //getMinimumSize
        public Dimension getMinimumSize(){
         return myDimension;
    class colorChanger implements MouseListener {
        private Color oldColor = new Color(0,0,0);
        private Color changeColor = new Color(0,0,0);
        //constructor
        colorChanger(Color it){
         changeColor = it;
        //Methods required to implement MouseListener interface
        public void mouseEntered(MouseEvent e) {
         oldColor = e.getComponent().getBackground();
         e.getComponent().requestFocus();
        public void mouseExited(MouseEvent e) {
         e.getComponent().setBackground(oldColor);
         e.getComponent().transferFocus();
        public void mousePressed(MouseEvent e) {
        public void mouseReleased(MouseEvent e) {
        public void mouseClicked(MouseEvent e) {
    class buttonListener implements ActionListener {
        private MousePanel it1 = new MousePanel(0,0,"");
        private MousePanel it2 = new MousePanel(0,0,"");
        private TextField from = new TextField("");
        private String words = new String("");
        //constructor
        buttonListener(MousePanel target1, TextField source, MousePanel target2){
         it1 = target1;
         from = source;
         it2 = target2;
        //Methods required to implement ActionLIstener interface
        public void actionPerformed(ActionEvent e) {
         words = from.getText();
         it1.changeText(words);
         from.setText("");
         it2.changeText("");
    }//end buttonListener
    class kbListener implements KeyListener {
        private MousePanel it = new MousePanel(0,0,"");
        private String putString = new String("");
        //constructor
        kbListener(MousePanel target, String display){
            it = target;
         putString = display;
        //Methods required to implement KeyListener interface
        public void keyPressed(KeyEvent e) {
        public void keyReleased(KeyEvent e){
        public void keyTyped(KeyEvent e){
         putString = putString + e.getKeyChar();
         it.changeText(putString);
    }When I compiled it, I got:
    ActivityBox.java:18: cannot resolve symbol
    symbol  : constructor colorChanger (java.lang.String)
    location: class colorChanger
        Button southButton = new colorChanger(southString);
                             ^
    ActivityBox.java:24: cannot resolve symbol
    symbol  : constructor BorderLayout (int,int)
    location: class BorderLayout
            setLayout(new BorderLayout(5,5));
                      ^
    ActivityBox.java:28: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            np.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:33: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            sp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:36: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            ep.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:40: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            wp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:43: cannot resolve symbol
    symbol  : variable Cyan
    location: class java.awt.Color
            cp.setBackground(Color.Cyan);
                                  ^
    ActivityBox.java:72: cannot resolve symbol
    symbol  : class retrun
    location: class MousePanel
            retrun myDimension;
            ^
    .\BorderLayout.java:8: setLayout(java.awt.LayoutManager) in java.awt.Container c
    annot be applied to (BorderLayout)
            p.setLayout(new BorderLayout ());
             ^
    .\BorderLayout.java:9: cannot resolve symbol
    symbol  : variable NORTH
    location: class BorderLayout
            p.add("North", BorderLayout.NORTH);
                                       ^
    .\BorderLayout.java:10: cannot resolve symbol
    symbol  : variable SOUTH
    location: class BorderLayout
            p.add("SOUTH", BorderLayout.SOUTH);
                                       ^
    .\BorderLayout.java:11: cannot resolve symbol
    symbol  : variable EAST
    location: class BorderLayout
            p.add("EAST", BorderLayout.EAST);
                                      ^
    .\BorderLayout.java:12: cannot resolve symbol
    symbol  : variable WEST
    location: class BorderLayout
            p.add("WEST", BorderLayout.WEST);
                                      ^
    .\BorderLayout.java:13: cannot resolve symbol
    symbol  : variable CENTER
    location: class BorderLayout
            p.add("CENTER", BorderLayout.CENTER);
                                        ^
    14 errors

    Again compile ur code .... I don't seem to get all those errors

  • Activity with "(re-uese)" postfixed to name in an Activity Diagram

    I am creating a new activity diagram and trying to including a pre-existing activity. This activity is currently not used in any other diagrams. (I had created a diagram and later deleted it. All the activities still stayed in the "Application Sources" under the package.)
    This occurs when I do drag and drop from the "Application Sources" into the diagram. It also happens when I right-click and use "Add to diagram".
    How do I include the activity without having the "(re-use)" postfixed to its name in the activity diagram?
    The only way I can find to not have the "(re-use)" is to delete the activity and recreate it from scratch. Is there an easier way?
    I am using version 10.1.3.0.2.223 on Windows XP.
    Mike

    Mike,
    Although I have reproduced this issue in 10.1.3 Production as well I would recommend moving up to the latest version rather than working off a Preview from 2 years ago as we have made many improvements to the overall look and feel of both JDeveloper and the Modelers.
    To workaround the issue, remove the Activity with the '(reuse)' after it from the current diagram and save and close JDeveloper. In a text editor open up the Activity file ('xxx.oxm_act'), you should find a line like:
    <cid name="CONTAINER_REFERENCE" key="<Some Text>" />
    Replace the above line with:
    <null name="CONTAINER_REFERENCE" />
    and save the file. Reopen JDev and include the Activity back on the Diagram, it should no longer say '(Reuse)' after it.
    Regards,
    Lisa
    JDev UML QA

  • How do I export/inport an activity diagram for someone else to make updates

    I created several projects with activity diagrams. Someone else need to update just the diagram. How can I make this available to them.
    Thanks,

    User,
    Activity diagrams (appear to be) stored in 2 files:
    <diagram name>.oxd_oam
    and
    top <diagram name>.oxm_act
    John

  • Setting up Abode Digital Editions, when I try to Authorize with my Abode id information I get the message "Activation Server Problem - check connection to the internet" when I clearly am connected to the internet ?

    Hi can anyone help me please this is driving me crazy ! I download and install Abode Digital Editions and when I try to Authorize with my Abode ID information I get the message " Activation Server Problem - check connection to the internet when I clearly am connected to the internet ?

    <moved from Downloading, Installing, Setting Up to Adobe Digital Editions>

  • Copying a UML activity diagram from 1 database to another within BPA

    Is it possible to copy a UML activity diagram from one database to another database within BPA, there does not need to be a link between the original and copied diagrams? This is possible by Export/Import.
    Edited by: [email protected] on 04-Mar-2009 08:34

    I haven't tried this specifically with the UML Activity diagram but generally yes all models can be exported as XML and imported into another BPA database. If they are on the same server you may also use the merge capability to move models, objects and folders between DBs. For merge, you have to have the same folder structure in both DBs and and drag the thing you want to merge and drop it on the DB name.

  • Develop an environment: Activity diagram to corresponding JAVA code

    we are doing a poject to convert UML Activity diagram to corresponding JAVA code.
    How can we develop a plug-in, that can embedded in the an IDE..(UML environment with standard symbols... etc.)
    There are already has some IDEs that can use to do this...
    -SDE for NetBeans
    -SDE for Sun ONE etc.
    From where can we find out more details about : how those stuff are created:working.
    Any ideas,white papers, research papers on this issues welcome!

    Poke around at Eclipse.org. Their stuff is usually talked about/written about.

  • Editing Or Merge/Decision element in the Activity diagram

    Hi,
    I am creating Activity diagram in JDeveloper. After i added the Decision elememt(diamond shape) in to my activity, i would like to add some text (like isSuccess) in to the elemet.
    But edit action is disabled. How can i enable it?
    Thanks

    I think you can determine this by checking if AFVC-SUMNR has a value.

  • Activity Monitor problems increase CPU and power burn

    Migration Assistant worked very nicely, transferring from a Powerbook G4 with 30GB of files and data in about 45min via Firewire.
    However, after 2 days of usage, the CPU was still running at 80% and applications were incredibly sluggish. My battery calibration at full charge only showed a little over 1 hour. Activity Monitor also would not show any processes -- the list was completely blank.
    The solution was to rename the Preferences folder, allowing programs to create a new Preferences folder. I then selectively populated the new folder with the main old preferences for mail, Safari, etc. This not only solved the Activity Monitor problem, but immediately drove down the CPU usage to about 10% where I'd expect it. Now the battery shows over 2.5 hrs on a full charge with the screen on full brightness (and it's BRIGHT!)
    Also, Microsoft Word/Powerpoint/Excel/Entourage: trial software on the MacBookPro will mess up your migration, so delete the trial software BEFORE MIGRATION ASSISTANT.
    Hope this helps some of you out there!

    Another thing users who run Migration Assistant should know is that many of your background processes and helpers may slow down the Macbook.
    For example, I notice that a bunch of PowerPC menu items running under Rosetta slowed things down. Also, the Microsoft Office Autoupdate background process, which is started from System Preferences > Accounts > Login Items constituted one Rosetta process running all of the time.
    When I remove/disabled these background processes, I noticed a significant difference.

Maybe you are looking for