Public void getConfiguredList() { ....} //is the name correct

hi,
i have used the name in my project where i'm getting a list. actually the method will not return anything, but by that call i can get the list from some other notifier. here, is the method name getConfiguredList() with void return type correct?
help!
-karups

yeah, that's correct.but, i might have implemented the method to directly return the value, but it takes longer time as the data is coming from server to the client. hence i used the notification mechanism, once the data is received, my calss will be informed with the data. here in my case after calling the method i'm doing nothing but waiting for the data to come.this way i release the thread lock,so the user won't get the feel of delay in response, coz he'll do any other operation in that time span. so, i guess, it,naming like this, makes sense in this particular situtation. pl. opine.

Similar Messages

  • I keep getting the message, "Windows cannot find 'c:\Program Files (x86)\Mozilla Firefox\firefox.exe'. Make sure you typed the name correctly, and then try again." I get it when I either try to open it from the Start menu or from the desktop icon.

    I've just installed Firefox on my laptop and keep getting the message, "Windows cannot find 'c:\Program Files (x86)\Mozilla Firefox\firefox.exe'. Make sure you typed the name correctly, and then try again." I get this message whenever I either try to open it from the Start menu or from the desktop icon. I've never gotten it to work and even uninstalled it and then redownloaded it and still cannot get it to open. Any help would be greatly appreciated!!!!

    Are you installing from the official site? http://www.mozilla.com/firefox
    If you use Windows Explorer (My Computer) to check that path, is the Mozilla Firefox folder there? That is the normal installation location, but I think it's worth checking.
    If the folder isn't there or firefox.exe is not in it, I wonder whether some other software might be interfering. You might want to run some supplemental security scans. These two tools are highly regarded:
    Malwarebytes Anti-malware : http://www.malwarebytes.org/products/malwarebytes_free
    SUPERAntiSpyware : http://www.superantispyware.com/

  • "Windows cannot find 'Flash'. Make sure you typed the name correctly, and try again."

    I can't open Flash files from Flash Builder 4.6 in Windows 7. I just get this message "Windows cannot find 'Flash'. Make sure you typed the name correctly, and try again."
    In Preferences Fila Associations for FLA Adobe Flash Editor (default) is selected as per default initial settings. I've even tried reinstalling FB from scratch and it is still giving this error.

    This worked for me (requires Flash install)
    In menu bar, select Window->Preferences
    In Preferences window, select General->Editors->File Associations
    Select or add ".fla" to File Associations
    Change the Associated editors to "Flash Document". Set it to "Default"
    I also removed their internal "Adobe Flash Editor" since it didn't seem to be working anyway. Not sure if this makes a difference.

  • "Windows cannot find...Make sure you typed the name correctly" issue across many files

    I recently have run into an issue where many programs cannot be opened. I get an error message saying "Windows cannot find... Make sure you typed the name correctly the try again."  This happens for task editor, or manage in the control panel.  I cannot change settings in the system security as I get the same message.
    I ran a full scan of McAfee and nothing was picked up.

    Hello,
    Thank you for posting in the HP Support Forum.
    These symptoms you describe appear because Windows cannot find certain application when it is lauched using some kind of shortcut. Since it appears with many applications (including Task Manager), this is usually considered to be caused by malicious programs (malware) such as viruses, trojans, etc.
    http://support.microsoft.com/kb/311446
    *Note - the above Microsoft KB article is just one example for the many many viruses that exist out there. Of course, you may
    Please, double check your system with other security products aside from your McAfee.
    Try to check your computer using  the free ESET Online Scananer:
    http://kb.eset.com/esetkb/index?page=content&id=SOLN2921&locale=en_US
    Scan with the free HitmanPro :
    http://www.surfright.nl/en/hitmanpro/
    Please, report back your results.
    If it happens so that you cannot run ESET or HitmanPro,  best would be to use an alternative computer (known clean one), prepare a bootable CD/DVD using a "live" antivirus image such as Kaspersky Rescue Disk or ESET SysRescue Live, and scan your system using this CD/DVD. Full instruction can be found here:
    http://malwaretips.com/blogs/how-to-use-kaspersky-rescue-disk/
    http://www.eset.com/int/support/sysrescue/
    Please, report back your results.
    Best wishes,
    IT_WinSec
    Hewlett-Packard employee | HP Enterprise Services
    Although I work for HP, I express my personal opinion.
    Visit www.hp.com/makeitmatter
    --Say "Thanks" by clicking the Kudos Thumb Up in the post that you find useful.
    --Please mark the post that solves your problem as "Accepted Solution"

  • Windows cannot find c:\Program files\Adobe\Adobe Photoshop CS5.1 64bit\Photoshop exe. Make sure you typed the name correctly.  This error comes up and I can't get photos (raw) to open from bridge.  Also I have Photoshop CC not CS5.1as error states.

    Shall I just reinstall the program?  It was running fine until I got a Trojan last week. I'm  pretty sure the Trojan has been removed'

    It sounds like your windows registry is messed up.  That you may have had cs5 at one time and upgraded to cs6 than got a subscription and installed  Photoshop CC.  You than followed that with an uninstall of CS6 which backed out its registry update and restored  windows registry Photoshop.exe key to what it replaced your old CS5 path.   Since CS5 is no longer on you machine  you get that message.  Use regedit search for key Photoshop.exe and correct the path to Photoshop CC 2014...

  • When opening firefox get this message now after downloading Adobie flash player Windos cannot find 'C:\Users\Lee\AppData\Roaming\Mozilla\Firefox\Profiles\cq2t...\getPlusPlus_Adobe_reg.exe'. Make sure you typed the name correctly, and then try again

    Upon downloading Adobe flash player for farmville when I click on the icon to open Firefox I get this message when I click OK it disappears and opens Firefox How can I delete this so it don't appear

    See http://kb.mozillazine.org/Flash#Windows_installation_issues

  • By mistake I uninstalled my Acrobat someting, which gave me the opportunity to print .pdf and color-mark text. My licence key is [removed by moderator]. What is the name of the product? Where is the link for download and reinstall? Please help me r

    By mistake I uninstalled my Acrobat someting, which gave me the opportunity to print .pdf and color-mark text. My licence key is [removed by moderator - never disclose publicly]. What is the name of the product? Where is the link for download and reinstall? Please help me rapidly, Best regards / Stefan

    Sign in to your Adobe account online and look in the Plans/Products sections to see which program it might have been.

  • I want to know when the method "public void setName" is invoked?

    The jsp file contain the one which list below:
    <mt:hello name="foo"/>
    package com.acme.tag;
    import javax.servlet.jsp.*;
    import javax.servlet.jsp.tagext.*;
    public class HelloTag extends TagSupport
    private String name="";
    public HelloTag()
    super();
    � public void setName(String name) �
    � {                                                                    �
    � this.name=name; �
    � } �
    �_____________________________________________�
    public int doEndTag() throws javax.servlet.jsp.JspTagException
    try
    pageContext.getOut().write("Hello "+name+"!");
    catch(java.io.IOException e)
    throw new JspTagException("IO Error: " + e.getMessage());
    return EVAL_PAGE;
    }

    does the other method like :
    <b>public void setPageContext(PageContext PageContext)</b>
    and
    <b>public javax.servlet.jsp.tagext.Tag getParent()</b>
    is invoked like setName list above.
    Thanks!

  • When i go to 'New Folder' the name box only opens for a second so I dont have time to name it correctly. Rename Folder does the same thing - any thoughts??

    when i go to 'New Folder' in outlook the name box only opens for a second so I don't have time to name it correctly. Rename Folder does the same thing. Any thoughts? Many thanks.

    Hi Clint,
    Did you get a reply from anyone for this problem?  I'm having the same problem and wondering what the resolution might be.
    Thanks

  • I changed the name of my apple id and now I can't use the app store on my phone correctly because it's using my apple id's old name. I signed out and in on itunes and synced my iphone. Still doesn't work. Help please?

    I changed the name of my apple id and now I can't use the app store on my phone correctly because it's using my apple id's old name. I signed out and in on itunes and synced my iphone. Still doesn't work. Help please?

    Settings>Store...tap the ID shown...sign out...sign back in with the ID you want to use.
    Note: Apps are forever tied to the Apple ID used to originally obtain them. They cannot be updated using any other Apple ID other than the one they were originally obtained with.

  • Song title is incorrect in the "NAME" column in itunes, but correct at the top of the page for the song playing.

    All of a sudden most of the song titles under the "NAME" column in itunes is incorrect.   When I click on the file name it plays a different song but it points to the correct song elsewhere on the list.   Also it shows the correct song name at the top of the screen.  Is it possible to get the files under the NAME column to point to the right song?  This is happening on my PC windows 7.

    Move your mouse to the top of the Firefox window, then right click.
    You will see a menu of the available toolbars. Select '''''Customize'''''.
    In the new window, look for the icon. When you find if, hold down
    the left button on it, and move it to where you want it to be.
    You can move any of the icons you want from here, but some
    icons are locked in place.

  • Every time I download a file to my macbook pro, it saves it to downloads but changes the name and inserts % sign.  Please advise how to correct the name that it is saved under.

    Every time I download a file to my macbook pro, it saves it to downloads but changes the name and inserts % sign.  Please advise how to correct the name that it is saved under.

    Anything Downloaded with a Particular Apple ID is tied to that Apple ID and Cannot be Merged or Transferred to a Different Apple ID.
    Apple ID FAQs
    http://support.apple.com/kb/HE37

  • For those who have problems RE: My iPhone 4 on connecting to my pc shows my friends name in the DIGITAL camera Drive..It dsiplays my correct name when I`m on iTunes..PLEASE HELP ME HOW DO I CHANGE THE NAME IN THE DIGITAL CAMERA DRIVE??

    For those who have problems RE: My iPhone 4 connecting to my pc shows my friends name in the DIGITAL camera Drive..It dsiplays my correct name when I`m on iTunes..PLEASE HELP ME HOW DO I CHANGE THE NAME IN THE DIGITAL CAMERA DRIVE??
    SOLUTION:
    Iam pointing t0 windows7 os.
    1) go to control panel
    2) open hardware and sound
    3) In that open Devices and printers
    4)In that u can find Apple Iphone.
    5) now right click on this --> Hardware --> Properties --> General --> Uninstall --> ok.
    6) now unplug and plug in ur iphone again.There u go u iphone name changes to its original name.

    I am having this problem.  At first with the new iPhone 5, and then with the iPad 2.  I am not sure why this is happening. 
    My gut feeling is this is an iO6 issue and here's why -
    The problem mainly occurs with apps.  I have about 150 apps, and when I plugged in the phone, iTunes went to sync all of them.  The process would hang up after about 20 - 30 apps were loaded onto the phone. I could tell where about the process hung up because the apps on the phone showed up as "waiting".
    Then on the iPad 2 I plugged in to sync and saw there was a huge "Other" component in my storage.  It required me to restore the iPad 2 from backup.  With this restore the same issues occurred - putting the apps back on the iPad would hang up.  The videos on the iPad also got stuck - maybe after about 10 hours of videos transfered iTunes crashed.
    My solution has been to soft reset the device, restart Windows, and continue the process until it's complete.  This is remarkably inefficient and time-intensive but everything works with patience.
    I have been wondering if others have had these same problems. 

  • Recently I noticed that when I change the name of a photo (correcting a mistake) it always goes back to the previous name, keeping the mistake I'm trying to correct. A spelling mistake, for example. As I keep my photos organized by name and not by date, t

    Recently I noticed that when I change the name of a photo (correcting a mistake) it always goes back to the previous name, keeping the mistake I'm trying to correct. A spelling mistake, for example. As I keep my photos organized by name and not by date, this is very annoying.
    And today it won't even read my camera's sd card, and I try with 2 different ones. If I restart the computer, leaving the memory card in, then it reads it; but if I pull it out and push it back in it doesn't see it. Whath am I doing wrong, if anything?
    Diane

    Where/how are you trying to change the name? If it is in Finder (after you've downloaded the pics to your desktop), highlight the pic icon and press Return. the name field will change and you can type in your new name. Hit Return again. That should make it "stick".  If you're trying to do it elsewhere, please post the steps that you've tried.
    As for your card: do you eject it properly? Either drag icon to trash or hit the eject symbol in the sidebar?

  • Why is the name of java file is same as public class?

    hello friends
    why we need to assign same name to .java file as the name of public class in .java file? while its not necessary for the class having no modifier?

    This question has been asked several times. Serch the forum.
    x

Maybe you are looking for