About interface and class[Please read this]

I writing what I found out:
myinterface.java
interface myinterface
class A
A()
{System.out.println("A()
of interface");}
A.java
class A implements
myinterface
A(){System.out.println("A()
of A.java");}
public static void main
(String args[])
A a=new A();
//this calls A() of interface
//myinterface.java
//how come the output of
// this code is like this

how come this is possible?Well, it had to pick one or the other, since they
have the same symbol name. Why are you choosing to
make up goofy names that collide in the first place?
If you want to explicitly use one or the other, you
need to also choose a package name, and fully-qualify
the class name that you are trying to instantiate.For example:
package test;
interface MyInterface // renamed to follow standard naming convention
  class A
    A() { System.out.println("A() of interface"); }
class A implements MyInterface
  A() {System.out.println("A() of A.java"); }
  public static void main(String args[])
    test.A a = new test.A(); // prints A() of A.java
    MyInterface.A a1 = new MyInterface.A(); // prints the other one
}

Similar Messages

  • I am not able to login to my facebook account and error message reads "This web site does not supply ownership information." Please help

    I am not able to login to my facebook account and error message reads "This web site does not supply ownership information." Please help
    only title bar opens and nothing else....please help

    Normally, when you connect via http, the browser doesn't check for site identity, so I don't understand what's happening there.
    Do you have any security-related add-ons that force popular sites to use a secure connection, or claim to provide anonymous browsing?
    Were you making the connection on your own network or on a public network (e.g., school, coffee shop)? If it was a public network, maybe the error indicates that your traffic was being intercepted???
    Without hands on, this is a tough one to diagnose.

  • Can any body please read this and ans me

    hi all,
    can any body please read this and tell is there any function module or some other thing is available.
    Material masters are location specific, and Progistix maintains part details in Canadian $, now we need to get the logic how SAP converts the standard cost of the material from Canadian $ to US $
       The plant number of Canada is 3002.

    Hi
    you would have to use the following function modules
    CONVERT_TO_LOCAL_CURRENCY
    CONVERT_TO_FOREIGN_CURRENCY
    regards
    Dinesh

  • Ipod not connecting again, apple please read this.

    First let me state that I made posts awhile back about my Ipod touch not being able to be recognized by itunes at all and just as a camera by windows. Now every single guide did nothing to help and the FEW people that posted had posted things I already did that did not help.
    HOWEVER the version of Itunes that was prior to the one I just downloaded connected PERFECTLY with no issues.
    But I just updates and wouldnt you know it, the connection problem is BACK. Apple please read this, the last version of Itunes had something different with how it connected to the Ipod...PLEASE bring that back, its so inconvenient not being able to connect to my own Ipod
    If someone wants to post a reply that might help feel free...but everything on this website and even a few others not posted here have not worked, this is mostly me praying that Apple reads it...that tiny difference on how it connected made a huge difference with my computer.

    Thanks. I worked out a simpler method of turning off the internet access - just switching off my wireless modem. Either way, this works and with the PC not connected to the internet, all three Apple devies will sync.
    Thinking about it now, I had a similar problem a few versions ago which I recognised because with Home Sharing on and connected to the internet iTunes was trying to find files from someone in another hotel room who also sharing the hotel's wireless network. My devices would not sync then either. This seemed to be resolved with subsequent itunes upgrades until now ....
    Thanks for the advice. Let's hope Apple's next 'update' actually updates itunes so it can sync Apple devices whilst simultaneously connected to the internet (not a big ask really).

  • [svn] 4081: Remove @private from an interface and class

    Revision: 4081
    Author: [email protected]
    Date: 2008-11-12 06:50:02 -0800 (Wed, 12 Nov 2008)
    Log Message:
    Remove @private from an interface and class
    QE Notes: None
    Doc Notes: None
    Bugs:
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/listClasses/ListBaseContentH older.as
    flex/sdk/trunk/frameworks/projects/rpc/src/mx/messaging/messages/ISmallMessage.as

    System.arraycopy()
    You're almost certainly better off with a List implementation, though. Whether you use LinkedList or ArrayList should depend on your usage specifics, but from the limited information provided it seems that LinkedList would be a better choice.

  • -I have a password protected excel spreadsheet, how can I get my iPads and iPhones to read this and save it password protected?

    I have a password protected excel spreadsheet, how can I get my iPads and iPhones to read this and save it password protected?

    Documents to Go says that it, "Opens password protected Excel 97-2008 files", but does not say whether it can save them as "password protected".
    This might work for you.

  • Guys I need help please read this and try to understand it

    I want to know that what does a new driver has to do with modem that it makes noises like "click click" during the gameplay...
    Right now i am using the old version that came with the box.It is 43.45 that has been released almost an year ago.Believe me guys it works almost perfect no noise and nothing.
    If i come into 2004 then the latest version is 56.72 .I've heard that nVidia has uploaded this driver on april 1st (Happy fool day from nVidia). Thus guys i wish to come into this new year and i want to update my driver,and when i install this driver it will give me trouble from the modem. Couple of more things i have checked and they're the driver that came with the box is by DETONATOR and these days the drivers says FORCEWARE and the second thing is that the old software that comes in CD from nVidia doesnt contain "DIGITAL VIBRANCE" but all new drivers has it. Could this problem is from here? I am totally puzzled first i thought that there is something wrong with the graphic card but when i checked it was modem.When i changed the modem same problem.I changed the slot, same thing. Thought there is a virus or spyware but there was not.Hardware is ok because old version is working fine.
    PLEASE GUYS I NEED ALL OF YOUR SUGGESTIONS DONT IGNORE MY PROBLEM
    GRAPHIC CARD is MSI nVIDIA FX-5200
    MB is MSI 865P-NEO
    Modem is CONEXANT
    One more thing i want to mention
    if i turn on pc and start playing games(any 3D games) will run perfect on any driver whether it is new or oldest. But if i connect to internet with modem and later disconnect it and then start playing games or any 3D presentation the modem starts crying (CLICK CLICK) and this is the same sound that comes when we start connecting(dialing, probably when it gives signal) the internet.
    In this situation i have to completely turn off my pc and also unplugging it (DISCHARGING ELECTRICITY). and then, when i turn on the pc and start any game without connecting to internet everything runs fine (On the new drivers)....
    Now as i have mentioned before i changed the slots removed and even reinstalled.Nothing happens just a click click sound.
    but for the old driver everything runs fine even if i am online and watching 3D presentations or playing games....
    So anybody ????????????????????????

    assuming its a pci one as he suggests it may well be an irq thing
    try playing swap the pci slot with it
    '

  • Need information about interfaces and namespaces in actionscript 3.0

    Hi,
    I need information about actionscript interfaces and
    namespaces, I'm preparing for ACE for Flash CS3 and I need to learn
    about this subjects and I can not find resources or simple examples
    that make these subjects understandable.
    Anybody can help me!
    Thanks a lot.

    Interfaces (cont.)
    Perhaps the most useful feature of interfaces is that you not
    only can define the data type but also method signature of the
    class that implements this interface. In other words, interface can
    define and enforce what methods class MUST implement. This is very
    useful when classes are branching in packages and team of
    developers works on a large application among others.
    The general syntax for an Interface with method signatures is
    written the following way:
    package{
    public interface InterfaceName {
    // here we specify the methods that will heave to be
    implemented
    function method1 (var1:dataType,
    var2:datType,…):returnType;
    function method2 (var1:dataType,
    var2:datType,…):returnType;
    To the previous example:
    package{
    public interface IQualified {
    function method1 ():void;
    function method2 ():int;
    Let’s write a class that implements it.
    If I just write:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    public function ClassOne(){}
    I will get a compilation error that states that I did not
    implement required by the interface methods.
    Now let’s implement only one method:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    public function ClassOne(){}
    I will get the error again because I implemented only one out
    of two required methods.
    Now let’s implement all of them:
    package{
    public class ClassOne extends DisplayObject implements
    IQualified {
    private function method1():void{
    return;
    private function method2():int{
    return 4;
    public function ClassOne(){}
    Now everything works OK.
    Now let’s screw with return datatypes. I attempt to
    return String instead of void in method1 in ClassOne:
    private function method1():String{
    return “blah”;
    I am getting an error again – Interface requires that
    the method1 returns void.
    Now let’s attempt to pass something into the method1:
    private function method1(obj:MovieClip):void{
    return;
    Oops! An error again. Interface specified that the function
    doesn’t accept any parameters.
    Now rewrite the interface:
    package{
    public interface IQualified {
    function method1 (obj:MovieClip):void;
    function method2 ():int;
    Now compiler stops complaining.
    But, if we revert the class back to:
    private function method1():void{
    return;
    compiler starts complaining again because we don’t pass
    any parameters into the function.
    The point is that interface is sort of a set of rules. In a
    simple language, if it is stated:
    public class ClassOne implements IQualified
    it says: “I, class ClassOne, pledge to abide by all the
    rules that IQualified has established and I will not function
    correctly if I fail to do so in any way. (IMPORTANT) I can do more,
    of course, but NOT LESS.”
    Of course the class that implements an interface can have
    more that number of methods the corresponding interface requires
    – but never less.
    MORE means that in addition to any number of functions it can
    implement as many interfaces as it is desired.
    For instance, I have three interfaces:
    package{
    public interface InterfaceOne {
    function method1 ():void;
    function method2 ():int;
    package{
    public interface InterfaceTwo {
    function method3 ():void;
    package{
    public interface InterfaceThree{
    function method4 ():void;
    If our class promises to implement all three interface it
    must have all four classes in it’s signature:
    package{
    public class ClassOne extends DisplayObject implements
    InterfaceOne, InterfaceTwi, InterfaceThree{
    private function method1():void{return;}
    private function method2():int{return 4;}
    private function method3():void{return;}
    private function method4():void{return;}
    public function ClassOne(){}
    Hope it helps.

  • Anyone that works for Apple, please read this

    I have a brilliant suggestion and didn't know where to post it but here it is.
    I work at a pharmacy. The program we are currently using is called PDX Pharmacy. I'll be honest with you, it *****. It takes a million steps to complete one simple task. My main issue is clearly this program's user interface. We use this program on a daily basis and it is used on our windows based PCs. This program is what prints out the information for our prescription labels. I hate it so much. I guess what I'm trying to say here is that Apple is known for their outstanding graphical user interface and I know that you geniuses over there in Cupertino can come up with some great stuff. Please hear me out on this: make me a pharmacy prescription filling program for the family owned pharmacy that I work for!
    Thanks for listening to me complain.
    Jerm

    I have a brilliant suggestion and didn't know where to post it but here it is.
    http://www.apple.com/feedback
    These are user to user forums. You are not addressing Apple by posting here.

  • Frequently Asked Questions (FAQ) BEFORE you post, PLEASE read this first

    PLEASE READ ALL OF THIS POST BEFORE POSTING ON THE FORUM FOR THE FIRST TIME!
    Welcome to the Creative Labs MP3 Players web forum!
    This forum is for discussing issues related to the MP3 players (digital audio players) made by Creative Labs for those in the Americas, Europe and Asia Pacific . Although we're not going to turn away folks from other areas
    The primary language of the forum is English, and posting in English is likely to get you a quicker response.
    If your question does not relate to Creative MP3 players please find another more suitable forum to post in. If you want to discuss another player, or something not covered by another forum, please use the Off Topic forum.
    CONTENTS
    How to contact support
    Hot topics
    General issues
    Before you ask your question
    When you ask your question
    After you ask your question
    Low volume issue
    Nomad Primer
    Nomadness.net FAQs
    More useful links
    Wishlist and petitions
    Suggesting changes
    . How to Contact Support
    Please note this is a peer forum and Creative's Support staff do not guarantee a reply here. If your issue is urgent, you are within your warranty period and/or you do not get a fast reply here you should contact Creative Labs Technical Support.
    To contact support click the Support > Contact Customer Support link on this page.
    When contacting Creative Support by email it's important to note that you must reply to the autoresponse email you first receive, as detailed in the email itself. Also make sure to check any spam trap you have on your email system if you have not received a reply.
    It's also important if you feel that you have a bug or defect with your product to register that issue directly with support. Don't rely on the forum to raise awareness of an issue.
    2. Hot Topics
    This is dividied into 3 sections: General, Tag based players & USB mass storage players.
    Make sure to also look at Section 3, which covers some of the other General Issues.
    General
    Where do I get the latest software, drivers and firmware?
    Click the link Support > Downloads on this page.
    In general, when installing on a new PC you need to download the driver, and some software to communicate with the player e.g. MediaSource, Media Explorer. For players using the v2.xx MTP/PlayForsure firmware drivers are not necessary, but you must have Windows XP and Windows Media Player 0 (this provides the MTP driver).
    Important: Even though files are described as updates, none of the software requires a previous version to install. At worst they will prompt you to connect your player to verify you own a Creative product.
    Note if you are downloading MediaSource make sure to download and install the relevant MediaSource plugin for your player. If MediaSource can't detect your player this is the first thing to check. For the v.xx PDE firmware the plugin is called the Creative Zen and NOMAD Jukebox plugin for Creative MediaSource , and for the v2 MTP/PlayForSure firmware it's called Creative MediaSource Plugin for PlaysForSure devices .
    I am completely new to MP3 players, where should I start?
    Have a read of my Nomad Primer, so called as Creative's MP3 player range tend to be prefixed with the word Nomad.
    I think I have a bug, how can I check?
    There's a known bug list hosted at my site here. If you want to add a bug then please
    I have a wish request for the player, what can I do?
    You can post it here (see the petitions listed in Section of this FAQ), email it to support, and/or add it to the public wishlist I host here by
    I'm having connection problems with my player
    If you can, the best test is to try your player with another PC, to see if you still have the problem. This localises whether the problem is with the PC (most likely the USB) or the player. See the link below (search on "connection problems") for a lot more troubleshooting on this.
    What bit-rate should I encode my music at?
    Ultimately it's down to your ears what bit-rate you prefer, and you should listen for yourself to determine it. If you ask on the forum you'll get many different opinions.
    Make sure to look at the "MP3 vs. WMA" link below also.
    How long should my battery last?
    For the Zen and Nomad Jukebox players, to get some idea of how long your battery will last for a given bit-rate look at the battery curves thread. Ultimately battery life is dependent on how you use the player, make sure to follow the "why doesn't my battery last as long as expected?" link below.
    How long does an RMA take?
    Typically 2 weeks. But it might take a little longer, so don't start posting if it's 5 days.
    I want to know how people feel about their Zen Micro/Touch/MuVo etc.
    There's a long post titled Experience with your Creative player that has many posts from users about their players. Please search back for threads about specific players before starting a new thread.
    Where can I buy online music or get legal downloads for my player?
    See this thread.
    My tracks don't play at the correct speed e.g. they play too slowly, why?
    Chances are they are encoded in an unsupported sampling frequency. The tracks will need to be re-encoded at a supported bit-rate and/or frequency with something like Creative's MediaSource Audio Converter or dbPowerAmp.
    Can a Creative player work on an Apple Mac?
    It isn't officially supported, but some kind folks out there have written freeware applications to get your Creative player working with Macs. XNJB provides support for the Zen players, and requires OS X 0.3 or 0.4 (check the site for full details). MuVoHelper solves some problems with getting the MuVo to work optimally. The iTunes Zen plugin should support all Zen players. Note if the link to the plugin is broken just Google "iTunes Zen plugin" to find other sources. Also note there's no guarantee that these programs will work with the Mac, so if you have issues you should address your problems to the developer(s) of the relevant program.
    Can a Creative player work on Linux?
    Again it isn't officially supported, but again some kinds folks out there have written freeware applications to get your Creative player working. There's the Gnomad2 project. And don't forget the Linux forum at Nomadness.net if you are still having problems.
    Tag Based Players
    This section covers the players that use a hard disk and work using tags e.g. Zen Xtra, Touch, Micro, Sleek.
    My Zen is not behaving properly, won't startup, or goes into rescue mode. What should I do?
    If the Zen is not starting properly or not behaving correctly, first try to reset it. To reset all players except for the Zen Micro there is a small switch on the side of the player typically, that you should press using something like a bent paper clip. Don't use anything sharp. To reset the Zen Micro simply remove the battery and replace it.
    If this doesn't work then access rescue mode, and try running a disk cleanup.
    Next you should try reloading the firmware/OS, but beware if you are having connection problems also with your PC you may end up with a player that has no firmware and cannot be reloaded.
    The last resort is to format the player. This will erase the contents from the player, including the content that ships with the player.
    If none of these resolve the problem and you are under warranty you should get in contact with support to arrange replacement of the player.
    If you aren't under warranty Creative will still repair the player, which you can arrange by contacting support.
    How do I do a Disk Cleanup and/or access Rescue/Recovery Mode?
    Refer to the sticky Rescue Mode thread. Disk Cleanup is accessed from this. Note that the MuVo players (with the exclusion of the MuVo? players) do not have Rescue Mode.
    How long should a Disk Cleanup take?
    It should only take a few minutes, and no longer than 30 minutes. Anything longer than this and there is a problem with the player and you need to contact Creative Support.
    How long should a format take?
    Only a few seconds. Anything more than a minute and there is a problem with the player and you need to contact Creative Support.
    Although I can get into Rescue Mode, I can't select any option, or the options don't work?
    If Rescue Mode is not working properly or commands can't be chosen the player is faulty. You need to contact Creative Support.
    When are the Zen 20Gb/Neeon going to be released outside of the Asia Pacific region?
    Due to popular request the Neeon is launched in the USA, but nowhere else for now. If you want the Neeon then contact your regions Customer Services to request it.
    The Zen 20Gb is available from some shops in the USA and Europe e.g. Cambridge Soundworks, and Amazon.co.uk.
    Is there a known issue with the Zen Micro headphone socket?
    Creative Support have neither confirmed nor denied it officially. Some users have posted purported emails from Creative on the forum saying that the socket has been reinforced, but these have not been confirmed by Creative Support either. The exact incidence of the problem is unknown, but newer players seem to suffer less from it.
    Should I buy the Zen Micro or Touch etc. and what colour should it be?
    We can't tell you what player to get, or what colour it should be. Look at your collection size and the features of the player (see Nomadworld.com for the product pages) and decide yourself based on this.
    Why does my Zen Micro battery drain so quickly?
    The standby time (24 hours from turn-off) for the Zen Micro seems to use a lot more power than previous Zens. Creative have released both v (..0+) and v2 (2.20.05+) firmware that reduces the standby time to 4 hours. Make sure to update to one of these if you have a draining problem.
    Also see JazzMC's detailed page on this problem.
    Why is my Zen Micro/Touch Touchpad so sensiti've and/or difficult to use?
    The Touchpads take some time to get used to.
    continued below... Message Edited by SSR on 2-29-2005 04:03 PM

    7. Low Volume issue
    See here in the Zen FAQ at Nomadness.net.
    If the firmware will not apply because it says the version number is the same use the Reload OS option, access to which is described in the relevant FAQ for your player below.
    8. Nomad Primer
    If you have ordered, or just bought a Nomad Jukebox, Zen, or MuVo?, consider reading the Nomad Primer.
    It may be worth reading even for the more experienced User.
    9. Nomadness.net FAQ's
    General FAQ
    Jukebox FAQ
    Jukebox 2 FAQ
    Jukebox 3 FAQ
    Jukebox Zen FAQ
    MuVo FAQ
    Nomadness.net is the foremost peer site on the Web for the Nomad players on the Internet; with news, articles, web forum, download archi've, and more!
    0. Some more useful links
    Nomadworld.com - Creative Labs's International Nomad website (based in the USA)
    Player Manuals - Downloads of digital manuals
    Notmad Explorer - 3rd party software
    Battery Uni'versity - very good, comprehensi've site on batteries
    Chinese Support thread - with information on how to get chinese characters on your player
    . Wishlists and petitions
    Here are links to a number of general wishlist and petitions, so rather than starting your own you can add to those that already exist, or of course add your support for a feature you would like to see.
    Also remember that the only collecti've public wishlist is maintained here at StainlessSteelRat.net (this is not affiliated with Creative Labs, but maintained by the author of this FAQ). There is also a bugs list here. So please
    Wishlists
    Zen Micro
    Zen Micro (another)
    MuVo Sports C00
    MuVo N200
    Petitions
    AAC support
    Lossless codec support
    MP3 Pro support
    Ogg Vorbis support
    Audible support
    Genre definable EQ
    Gapless playback
    Games support
    Insert to queue
    No "the" in Music Library
    Open source firmware
    Play count and ratings
    TXT viewer
    USB mass storage / dri've letter support
    Track number duplicate checkAlbum art
    Substring search
    Dual firmware for both tag and dri've letter support
    Rename "Reload OS" to "Erase OS"
    Zen Micro alarm enhancements
    Zen Micro always visible clockZen Micro Audible support
    Zen Micro customisable standby time
    Zen Micro EAX
    Zen Micro radio enhancements
    Zen Touch non-PlayForSure firmware with bug fixes
    Zen Touch bookmarks
    Zen Touch EAX support
    Zen Touch random button changeZen Touch Audible support
    2. Suggesting changes
    To suggest changes to this FAQ please
    Thanks for reading!

  • Rant about Tabs (Apex team please read)

    I am really, really tempted to go off on a Dennis Miller style rant about 'Tabs'.
    I surely hope this part of Apex is extensively "redone" in future versions, as the current implementation is cumbersome at best; inconsistent and non-intuitive at the least.
    First, let me thanks Kostya for his blog (http://proskudin.blogspot.com/2007/06/two-level-tabs.html) that helped me stumble through the process of creating something useable with tabs.
    Here's some of the problems/complaints I had and a question or two, starting off with a brief overview of my setup.
    I have 29 main data pages that can be grouped into 6 logical categories of data, so I needed 6 parent tabs and 35 'standard' tabs.
    1. Please redo the terminology used in both Apex and the documentation for consistency and clarity. I would much prefer something like 'Tabset', 'Parent Tab' and 'Child Tab', as it is readily apparent what the hierarchy is.
    2. It wasn't apparent at all that in order to create a 'Tabset' and a 'Parent Tab', I had to first create a 'Standard Tab' (Child Tab). This just seems completely backwards. (Maybe I'm just to old).
    3. I named my 'Tabset' "Menu" and I called the first 'Parent Tab' "General". Yet after I discovered Kostya's explanation of how to get tabs working correctly, all of my other 'Parent Tabs' had to use "General" as the 'Parent Tab' instead of just referring to the 'Tabset' as the master. By default, when the other 'Parent Tabs' were created (and no way to specify otherwise), they had their 'Parent Tab' set to null.
    4. Would #3 above have been different if I created a 'Child Tab' as the first step in creating each 'Parent Tab'?
    5. Under "Edit Parent Tabs", my first 'Parent Tab' wound up having the target set as "f?p=330:300:&SESSION.:". All of the other 'Parent Tabs' have the target set as "f?p=&APP_ID.:1:&SESSION.::&DEBUG.:::" (with the starting page different for each one). Why the inconsistency here?
    6. If I do a 'Shared Components', 'Tab's', 'Edit Standard Tabs', and get the grid listing of all of tabs, and then click the 'edit' icon to make some changes, once I click 'Apply Changes' I am returned to to 'Tabs' screen instead of the 'Edit Standard Tabs' screen that I was last on. This behaviour seems inconsistent.
    7. Related to above, there are two different 'areas' (or screens) that are called 'Edit Standard Tabs'. One gives you the grid listing of all of the tabs ('Parent Tabs' and 'Child Tabs'), while the other one is the editing of characteristics of an individual 'Child Tab'.
    8. On the 'Edit Standard Tabs' grid listing, it sure would be nice to be able to edit the 'Parent Tab' here, it would save a lot of clicking back and forth.
    9. On the 'Edit Standard Tabs' individual tab characteristics screen, it would also be nice to have the previous and next arrows to go the other tabs, like what you get when editing page items. This seems another area of inconsistentcy.
    10. Improve the documentation/help with fuller explanations and correct the typos. Two I can remember are (though not exactly where) is one case of a 'the the', and another case (I think on the 'Tab Also Current for Pages' help) that says to delimit page numbers with a colon, yet the example provided uses commas.
    11. If you click the 'Edit Parent Tabs', all you get is an abbreviated grid listing of some of the characteristics of the 'Parent Tab'. In order to edit (or see) all the characteristics, you must click "Edit Standard Tabs" (or use the graphical selection) to get the 'Edit' icon and then you can edit all of the properties. This seems to be another area of inconsistency.
    I think this covers all of the major problems I had (and it seems that others have had the same/similar problems as well). So in summation, quite a few questions here on the forum could be eliminated if the above were corrected/revised in future versions of Apex.
    It seems though that if these were corrected/revised in future versions, there would be a problem with existing apps not migrating to the newer version cleanly, so some sort of 'package' would need to be created to take existing tab information and move the current values around into new fields. This is just an assumption I'm making though based upon what I see in the 'Edit Standard Tabs' grid listing. It looks like this is probably based upon a table/view, so it shows how the inconsistcy between the current terms exists.
    Thanks for reading this. I was just so frustrated trying to figure these out that I had to vent. This area of Apex is not consistent with the rest of Apex and very confusing and tedious.
    Bill Ferguson
    Addendum: I am running 3.0.1.00.08 on 11g on Windows 2003 Server.

    Hi...even am screwed up completely with these tabs in APEX...been
    trying for the past 3 days...but of no use....Can anyone plssss help?
    My main requirement of Tabs structure is something like this
    Home ( linked to MS page)
    - MS page
    Customers ( linked to A)
    - A
    - B
    - C
    Retailers ( linked to D)
    - D
    - E
    - F
    Now I want all these Main Tabs (Home,Customer,Retailers ) to be visible
    on all the pages in my application. And when I click on Customers it
    should take me to A and all the sub tabs (A,B,C) should appear as
    subtabs. ( I want the main tabs (Home,Customer,Retailers ) ) to be
    retained in these in all the pages. I want similar tab operations in
    all pages.
    Can anyone give a detailed procedure of how to go about with this in APEX.The terminolgy used is very confusing..
    Thanks in Advance,
    Shravanthi

  • Please read this on the Nokia Updater - Important ...

    Hi All,
    Well - it looks like you have really taken well to the new Nokia Software Updater. We can also see that there is a little bit of confusion about the service in its present state right now.
    So... We got an email from the NSU team that gives a bit more info on the topic:
    The Nokia Software Updater checks which software is available for your particular phone by comparing the software you currently have with latest software assigned to the 7 digit product code of your phone. If newer software is available for your 'variant', it will be downloaded.
    In case the Nokia Software Updater says no new software is available but you believe this to be incorrect, please post your product code to these boards.
    Many thanks for your help,
    The Nokia Software Updater team
    Your product code can be found on the label in the battery compartment (e.g. 0501234).
    So, if you do run into problems, it would be a really great idea to let Nokia know what your product code is. If you find yourself needing to call or email Nokia on the topic - please include this code so that our support teams can get straight down to helping you out.
    Please do not forget, the Discussion Board itself is not here to provide direct support, so if you have an issue and post here the NSU team may see it, but they will not be able to get back to you directly. If you need one to one support - please get in touch via phone or email.
    Cheers
    KarimMessage Edited by vandelay on 30-Oct-2007 02:12 PM

    Greetings everyone.
    I contacted Nokia Support, and they sent me some info on how to get support locally some days ago. However, I plugged my phone again today and voila! to my surprise, it detected the new firmware and right now that I'm typing, I am updating to the new version.
    I'm not sure but I think I should thank Nokia Support for registering my Product Code and certainly for responding to my request in quite a short time.
    I should also thank all the other guys who gave me help on this issue, specially scoopyman.

  • Separate interfaces and classes in separate packages?

    I am writing an application in the package 'models.geometry'. I am beginning to get a growing number of interfaces with corresponding implementation classes. I therefore consider adding another packages an move all the interfaces to this package and keep the implementation in the original package:
    'models.igeometry' // for the interfaces
    'models.geometry' // for the implementation
    But is this interface/class - package separation good practice?

    First of: Usage of the prefix "I" to identify interfaces is rather rare in the Java world (it's not unheard of, but definitely not the norm). And I've never seen "i<package>" to identify a package containing interfaces, so I wouldn't suggest it.
    The question is: What does the code which uses your packages access? Does it only need the interfaces and a factory? In this case, I'd separate the packages into "models.geometry" and "models.geometry.impl".
    If the classes are first-level API, just as the interfaces (think Link/ArrayList, Map/HashMap), then I'd keep them in the same package or separate them on some other property.

  • ATTENTION ALL 27" iMAC OWNERS: PLEASE READ THIS THREAD

    Hello. Firstly, apologies for the attention-grabbing title, but ultimately I need as many people to test this out as I possibly can.
    Here's a basic run down of my problem: if I leave a window open on my display for about 10 mins, and then minimise it, and bring up a dark grey background such as iPhoto, Spotify, or a set desktop flat colour of dark grey, I can still see the text and display pictures semi-burnt into my screen, temporarily. They do fade after a while, but it is still annoying that it does this (I am a graphic designer, so I could potentially be working with dark images, and I don't fancy seeing my facebook messages over the top of my work).
    I had this issue with the iMac which I purchased last Thursday, and I returned it to Stormfront (my local Apple Authorised Reseller) and they acknowledged the issue and gave me a completely new iMac. However, yet again, this computer has the exact same issue, which makes me think it may be an issue with quite a few of the 27" iMac's.
    Therefore, I would like to ask if you, as the owner of a 27" iMac have a few spare minutes so that you can help me find out if this is a rare issue and I've just been unlucky, or if it's a wider issue with several iMac's.
    Please follow the step by step guide I have created below: the burn-in effect image is not a screenshot, however I have recreated the effect on Photoshop so you know what to look for. Thank you in advance for reading this, and helping me out; please let me know what results you get from this test.
    I am especially interested in users of the current Thunderbolt 27" iMac, with the high-end spec (3.1 GHz Intel Quad Core i5/4GB RAM/1TB HDD/Radeon HD 6970M HD). Please, if you own a different model also carry out these tests - your screen may have the same issue.
    Step 1: Change your desktop background to a dark grey colour. Go to System Preferences > Desktop and Screensaver > Desktop > Apple/Solid Colours > Cutom Colour... > Using the greyscale slider under the second colour picker tab, enter a value of around 15%. Set this as your desktop.
    Step 2: Open a white-backgrounded application. Position it somewhere on your screen (preferably the left as this is where I experience it at it's worst), and leave the application there for around 10 minutes.
    Step 3: Once 10 minutes is up, minimise the window, and study the area where the window was. If you have this issue, you will still be able to make out the elements from the open window (in my case, my Twitter followees display pictures and tweets). Here is a mocked up version of how it appears, created in Photoshop. As the issue is hardware related (I think), it doesn't appear in screenshots. You can view this image at full size here: http://cl.ly/AZYD.
    Step 4: Please let me know the result, and the specs of your computer. I am contemplating phoning Apple to make them aware of this issue, but wanted to see if it's just me before deciding it's a hardware issue.
    For me, I think I'll wait until the next Lion update is released, in case it offers a graphics driver update. Otherwise, I guess this one will be going back too.
    Thanks guys, and I await your responses.

    What you are seeing is called Display Persistence.  All LCD displays have a certain amount.  Some less some more.  This includes models from the same build.  I have linked Apples response to what your seeing.  I did the setup you said and saw no persistence on mine.  If I had let it set longer I am sure it would have shown up.  
    Apple: Avoiding image persistence on Apple LCD displays
    These are my iMacs specs.
    Model Name:iMac
      Model Identifier:iMac12,2
      Processor Name:Intel Core i7
      Processor Speed:3.4 GHz
      Number of Processors:1
      Total Number of Cores:4
      L2 Cache (per Core): 256 KB
      L3 Cache:8 MB
      Memory:8 GB
    AMD Radeon HD 6970M:
      Chipset Model:AMD Radeon HD 6970M
      Type:GPU
      Bus:PCIe
      PCIe Lane Width:x16
      VRAM (Total):2048 MB
      Vendor:ATI (0x1002)
      Device ID:0x6720
      Revision ID:0x0000
      ROM Revision:113-C2960K-152
      EFI Driver Version:01.00.507
      Displays:
    iMac:
      Resolution: 2560 x 1440
      Pixel Depth:32-Bit Color (ARGB8888)
      Main Display:Yes
      Mirror:Off
      Online:Yes
      Built-In:Yes
      Connection Type:DisplayPort

  • If your ipod freezes, skips songs, and wont load, read this

    ok, i have a 4th gen 40gb ipod which worked fine until i upgraded to itunes 5. now my ipod shows a folder with !, songs skip, and it freezes after 5 songs.disk mode didnt help either, as it didnt show up on my computer even though the ipod displayed do not disconnect. I found a fix for it. it sounds dangerous and crude, but it worked for me, and some other people. plug your ipod into your computer and it will say dont disconnect, and your comp probably will be locked up like normal until ipod loads, then take your ipod, and hit it on its side on a hard surface. do it while you hear the Hard drive spinning. NO JOKE. my ipod started working right after. however, the sound is really crappy now, but i was at least able to backup my files, and i'm going to use my warrenty to get a new one. the reason this works is beacuse somehoew the hd pin is out of place, and you can hear it clicking. hitting it will get it back in place. i know this sounds crazy, but trust me, it will stop skipping songs and freezing, and will appear on your computer. I warn you however, if you break your ipod doing this, dont blame me, i'm just saying this because it worked for me. give it a try if nothing else works. hope this helps. itunes 5 was really bad. anyone know where to get itunes 4.9, that was fine for me, and i had a separate podcasting program anyway.
    --Peace

    Hi Mark,
    I tried entering the serial number onto the apple website, but it says my iPod had not been registered (although I have registered it!).
    Anyway, I phoned apple support and they told me to go to depot.info.apple.com/ipod and fill in a service request. Unfortunately it said that my iPod is out of warranty, so I had to phone again to get them to update their records about the and they are sending out a service box in the next few days
    I think I'm definately going to take out the applecare service now!

Maybe you are looking for