I am trying to create a class diagram with jdeveloper but class is grey out

i am trying to create a class diagram with jdeveloper but class is greyed out even though I downloaded the J2EE version
I went through the following steps :
Click the project in which you want to create a new diagram, choose File New from JDeveloper's menu, then select General Diagrams in the left pane of the New dialog.
I have downloaded J2EE Edition Version 10.1.3.1.0.3984

When the class diagram is disabled - does the wizard for creating a new class in the new->General also disabled?
If it is then you are not placing your cursor on the project before you choose file->new
(you are probably on the workspace that contains the project).

Similar Messages

  • Extending the UML class diagrams with JDeveloper Extensions SDK?

    Hello,
    I studied the JDeveloper Extension SDK docs, but couldn't figure out how to write extensions that support UML Diagrams.
    What I would like to do, is to pin a different data model under the class diagram view.
    Well if you can't do that. In the worst case, my extension would register with a regular class diagram and listen to its events and and refuse particular changes. It would also create or use an empty class diagram and fill in the classes and associations in it. (this is less clean but I could live with it).
    Thanks in advance for all your suggestions.
    Slawek

    By definition you can change classes through the model so I guess the problem here is that the model cannot apply updates to something that it is pointing to the the compiled version of.

  • Creating java code from a class diagram in JDeveloper

    I have created a class diagram in JDeveloper 11.1.1.3.0. When I generated java code from the class diagram by right clicking on the class diagram->transform->same diagram->UML to Java, a .java file is generated with attributes and getters/setters, and also a .uml_cla file is generated. What is this .uml_cla file exactly and what is it used for? Also I have a package.uml_pck file that was created 3 times. I have a package of com.xxx.xxxx, and it put this package.uml_pck file in "com", in "xxx", and in "xxxx". Do I need to retain all 3 of these files in my project?
    One more question related to this. When I change something in the java representation of the class diagram (i.e. a datatype), it updates the .java file that was generated from the class diagram, and it also works the other way...change the .java file and the java representation of the class diagram changes. However, the class diagram that the code was generated from does not change, nor does the mysterious .uml_cla file I asked about in the above paragraph.

    This did work for me, with an exception. I have put the .java files generated from the class diagram in a different package from the .class_diagram file, the package.uml_pck file, and the .uml_cla file to keep the actual source code separate. When I modified the .java file and transformed the class diagram from java to UML, it created the package.uml_pck file and the .uml_cla files again in the same package as the .java file, and they show the update. The package.uml_pck file, and the .uml_cla file that were originally created and are in the separate package from the .java files were untouched, thus the class diagram displayed does not reflect the change either. Does this mean I should not, or cannot, separate these files, and that they all must be left in the same package? (the purpose of separating it in the first place was for ease of deployment since we don't want to deploy any of the class diagram files) Thanks!

  • I am trying to create another email account with talk talk. and I keep getting a failed message saying 'mail could not log into the mail server talk talk. Yet I already have another email account with talk talk. Not sure what I am doing wrong

    I am trying to create another email account with Talktalk. I already have one account.
    I try to input the new email address and password and get a failed message
    'Mail could not lot into the mail server talktalk.net.
    I have tried several times and keep getting the same message.
    Any ideas

    Accessing your emails from any computer connected to the Internet or from a Smart phone should be straightforward.
    For help on how to set up your e-mail on some of the most common software applications and devices, see How do I set up my TalkTalk email?
    If your software application or device isn't listed, all you need to connect to your TalkTalk e-mail mailbox are the TalkTalk e-mail settings. Make sure you use the right email settings for your specific email address.
    TalkTalk email addresses only
    Login / Username
    [email protected]
    [email protected]
    Incoming mail server
    mail.talktalk.net
    mail.talktalk.net
    Incoming Port
    110
    143
    Outgoing mail server
    smtp.talktalk.net
    smtp.talktalk.net
    Outgoing Port
    587
    587
    Outgoing SSL
    Yes
    Yes
    Outgoing Authentication
    Yes
    Yes

  • Trying to create a text item with a scroll bar in Indesign 5.5

    Is there a simple way to create a scrollable text article in Indesign 5.5? It will later be exported to a SWF as a mini-flash web portfolio.
    I would appreciate any help.
    I'm new to Indesign.

    quote:
    Originally posted by:
    wildfire121
    Can someone please help. I am trying to create a text box
    with a working scroll bar that will scroll the text in the text
    box. Can someone please help me with this?
    Do you mean a text box people can type in (for a Web form
    entry) or one for displaying your content?
    If the first, then you use the textarea tag and scrollbars
    appear when the user types more lines that you specify. See the
    textarea
    description at W3Schools.
    If the second, then that's usually done in Flash, but can be
    done with CSS. See these two pages:
    Dynamic
    text with scrollbar (Flash)
    Textbox
    with scrollbar (CSS)

  • Can anyone help me, I am trying to create courses using Captivate for Udemy, but even after saving the courses as pdf files, Udemy will not reconize them. NOw I am back to square one because according to Udemy techs, they do not support Captivate files.

    Trying to create my courses using Adobe Captivate, but even after saving the files as a pdf it will not upload in Udemy. What can I do?

    Yep, you lose all interactivity when publishing to video.
    Udemy, Lynda.com, Total Training and other similar models are based on simple "watch the video to learn" type of consumption. The only real interactivity you get is an ability to pause, rewind, fast forward. Basically anything you can do with a video.
    Cheers... Rick

  • Im trying to create a "wobbling" effect with a bitmap

    im trying to create a "wobbling" effect with a bitmap
    any idea how to go with this with director?

    It somewhat depends on what the effect is intended to acheive.
    Here is a simple behavior script that can be applied to any bitmap. It wobbles, in the sense that it has a radom movement about its axis.
    That is acheived with the random() statements. The amount of wobble can be controlled by changing the value added to each parameter on each iteration.
    The last three statements keep the wobble from randomly walking off the frame. Again, wobble can be changed by setting the corrective value at which point the bitmap returns to its original state.
    Hope this helps.
    property spritenum
    global glocH, gLocV, gRotation
    On beginsprite
      gloch = sprite(spritenum).loch
      gloch = sprite(spritenum).locv
      gRotation = integer(sprite(spritenum).Rotation)
    end
    On enterframe
    b = random(2)
      if b=1 then
        sprite(spritenum).loch = sprite(spritenum).loch + random(2)
      else
        sprite(spritenum).loch = sprite(spritenum).loch - random(2)
      end if
      c= random(2)
      if c=1 then
        sprite(spritenum).locv = sprite(spritenum).locV + random(2)
      else
        sprite(spritenum).locv = sprite(spritenum).locV - random(2)
      end if
      d= random(2)
      if d=1 then
        Sprite(spritenum).rotation = sprite(spritenum).rotation + random(4)
      else
        Sprite(spritenum).rotation = sprite(spritenum).rotation - random(4)
      end if
    if abs(gloch + sprite(spritenum).loch) <= 8  then sprite(spritenum).loch = gloch
    if abs(glocv + sprite(spritenum).locv) <= 8 then sprite(spritenum).locv = glocv
    if abs(Integer(gRotation - sprite(spritenum).Rotation)) >=8 then sprite(spritenum).rotation = gRotation
    end

  • Trying to create a VM using reserved IP but getting error "Must specify MediaLocation or set a current storage account using Set-AzureSubscription"

    I have created a reserved Ip and wanted to create a VM using the reserved IP. I had also created  aimage of existing Vm to create the new VM and I have used command on Windows Powershell as mentioned below.
    New-AzureVMConfig
    -Name
    "Amazon-10eBay-1" -InstanceSize
    “Small” -ImageName
    “Amazon-10-Image” | Add-AzureProvisioningConfig
    -Windows -AdminUsername
    “Akash” -Password “Stoneindia11” |
    New-AzureVM
    -ServiceName
    "Amazon-10eBay-1" -ReservedIPName
    "ResIPamazon10eBay1" -Location
    "West US"
    But its showing error "Must specify MediaLocation or set a current storage account using Set-AzureSubscription".
    I have been trying to create this Vm from many days but not able to create one. Please help

    Hello,
    Microsoft Azure forums are over here:
    https://social.msdn.microsoft.com/forums/azure/en-US/home
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • HT5622 Why does my credit car decline when I'm trying to review my credit card details? I'm trying to creat and finish  my apple login but it keeps saying declined. Does Apple charge credit cards just for registering a credit card??

    Why does my credit car decline when I'm trying to review my credit card details? I'm trying to creat and finish  my apple login but it keeps saying declined. Does Apple charge credit cards just for registering a credit card??

    Just to add to AnaMusic's list:
    Does Apple charge credit cards just for registering a credit card??
    Yes, Apple will validate the credit card, when you are setting up the account information for an Apple ID. The credit card must be valid in the country of the store, that you are trying to buy from. And the card you are using must neither be blocked by the issuer of the card nor by the Apple for store services.
    The error message  you are citing is misleading: The error message could either mean
    that you are using the wrong type of card (Are you using a debit card or a credit card?)
    that the AppeID or the credit card you are using has been blocked for security reasons,
    or that you are encountering a store error, because you are trying to use the iTunes Store or AppStore from a country, where it is not yet supported.

  • My daughter created an itunes apple id but gave the wrong email so now I can't go to the email and verify her itunes account. I tried to create a new email with the email she put in and I can't because its already taken..,..help

    My daughter created an itunes apple id but gave the wrong email so now I can't go to the email and verify her itunes account. I tried to create a new email with the email she put in and I can't because its already taken..,..help

    Hi JkeeneSoldano,
    Thank you for visiting Apple Support Communities.
    To regain access to your Apple ID, try to reset your password using one of these methods:
    Answer your security questions. Use these steps if you know the answers to your security questions.
    Use email authentication. We'll send you an email that you can use to change your password.
    Use two-step verification. If you set up two-step verification, you can use it to change your password. You just need your recovery key and a trusted device.
    From:
    If you forgot your Apple ID password - Apple Support
    If you need to use the email verification method but don't receive the reset email, see this link for more help:
    If you didn't receive your verification or reset email - Apple Support
    Best Regards,
    Jeremy

  • I have created a PDF form with field but for some reason I cant type in them

    I have created a PDF form with field but for some reason I cant type in them

    May be that the text fields are read-only.

  • I tried to sync music from iTunes to my iPhone and when I click on "on this phone" the songs are there, but they are greyed out and have a circle in front of them.  I can not click on those songs and when I eject the phone they are not on the phone.

    I tried to sync music from iTunes to my iPhone and when I click on "on this phone" the songs are there, but they are greyed out and have a circle in front of them.  I can not click on those songs, delete or anything and when I eject the phone they are not on the phone.  I tried to re-add the songs and it says it can't add songs because they've already been added.  So HOW can I get the songs to actually ADD to my phone to where I can listen to them?  It's like they're stuck in Sync limbo or something!  Any help would be greatly appreciated.

    I am having the same problem. I have just tried this. Unplug iphone > open itunes > delete all music from itunes library > close itunes > re-open itunes > add music from original folder > plug in iphone > select songs > press sync > unplug iphone using eject button onscreen > checked phone .... still nothing in music folder on phone. On itunes the "On this iphone" tab the songs remain there but greyed out.

  • HT1176 I am trying to add my iPhoto library to files to be backed up on time machine. I am told to click on the Options Minus butto, but it is greyed out. What is the solution ?

    I have been trying to add my iPhoto Library to files for time machine backup.
    I was instructed to click on the Options minus button - but it is greyed out and not functional. 
    What is the solution ?
    Your help will be much appreciated.
    Thank you.
    Roberto Kay 

    You can "see" the iPhoto library in Time Machine backups, but you cannot "open" the library or "browse" the contents while you are in Time Machine.
    Apple makes you restore the entire iPhoto library to another destination...like your desktop....if you want to retrieve a few older images that you may have deleted by mistake.
    This is a convoluted mess, but unfortunately, that is the way it is.
    See Pondini's excellent, detailed information on this:
    http://pondini.org/TM/15.html
    You might also want to post in the iPhoto support area to see if the experts over there might have a workaround for you. I cannot find one, but I'm not an iPhoto expert.
    iPhoto

  • Trying to restore after getting a new hard drive.  I can see the backup on the Time Capsule and on the correct date but it is Greyed out.  That is it wont let me open it and restore the machine.  Have tried also Migration Assistant, no luck.

    Trying to restore after getting a new hard drive.  I can see the backup on the Time Capsule and on the correct date but it is Greyed out.  That is it wont let me open it and restore the machine.  Have tried also Migration Assistant, no luck.

    https://discussions.apple.com/thread/5210788?tstart=0
    At startup hold down the Command+Option/Alt+r keys until you see a globe on the screen. Then use disk utility to partition and format the drive HSF+ and then select Reinstall Mac OS X. whatever version of OS X that originally came on your system will be installed and then you can upgrade back to Mavericks.

  • HT5163 I turned my iphone off when visiting the doctor's surgery and now it won't turn back on.  It had 73% battery left and I have tried connecting it to my computer with USB but nothing happens.  I have taken out and replaced the sim card too.  Any sugg

    I turned my iphone off when visiting the doctor's surgery and now it won't turn back on.  It had 73% battery left and I have tried connecting it to my computer with USB but nothing happens.  I have taken out and replaced the sim card too.  Any suggestions

    If wjosten's tip doesn't work try plugging it into a USB charger (not through your computer), wait about 30 seconds and it should come on. If it doesn't remove the cord from the phone and keep trying this. I've had this same issue and found a combination of the reset & charging cable tends to work. Sometimes it takes about 5 minutes for the phone to respond.
    Best of luck.

Maybe you are looking for

  • Hard drive will not mount - SMART STATUS "not supported"

    I was in the process of "sanitizing" an iMac G5 last night by erasing the data with Disk Utility and the hard drive is not not recognized...and some alarming noises periodically come from the drive. Is there something else I should try to determine i

  • ERP 6 EHP 3/ NW 7.0 on MSSQL 2012

    Hi All, As most of you know, Microsoft pulled it's mainstream support for SQL 2008 in July. We now need to make some decisions. Right now, we aren't ready to move to a newer EHP for ERP, so the question asked to me is, can ERP 6 Ehp 3 run on MSSQL 20

  • PDF Reader - Nokia Symbian v3 phones

    Hi Adobe 2.5 LE sucks major time. Even 100 kb files cant scroll and there is no full screen view. I found some software called Alternate Reader but I get some certificate error which looks like Nokia's doing to block third-party software.... So anywa

  • Mail not displaying messages from self as Unread

    Mails that I send to myself have suddenly stopped showing up as automatically unread in the inbox. Neither does the dock icon for Mail show the red circle indicating a new mail. Similarly with Ical mails alerts to me. Any clue which setting has got m

  • IMPORT BOOKMARKS FROM HISTORY FOLDER

    how can I get the bookmarks from the history folder back to the bookmark tab