Javadoc bug or missing an option for class extending AbstractTableModel

Hi Everybody,
I am reviewing my javadoc before submission of my SCJD assignment and I noticed
for my JTable model class HotelRoomTableModel that extends AbstractTableModel
for all the overwritten methods like getValueAt(), getColumnCount(), getRowCount()
that implement the TableModel interface where I am using javadoc comments of the form:
* {@inheritDoc}
@Override the HTML generated javadoc I see in my browser doesn't show anything
for these methods other than the name and the signature of the method.
Is that normal? Or is it a bug? Or perhaps did I miss anything?
I would hope that it would show something like:
"Specified by: methodName in interface InterfaceName"
or
"Overrides: methodMame in class ClassName".
My environment:
[auyantepui]</home/morillo/src/java/scjd/submission>% java -version
java version "1.6.0_18"
Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
Java HotSpot(TM) Server VM (build 16.0-b13, mixed mode)
[auyantepui]</home/morillo/src/java/scjd/submission>% cat /etc/release
                       Solaris 10 5/09 s10s_u7wos_08 SPARC
           Copyright 2009 Sun Microsystems, Inc.  All Rights Reserved.
                        Use is subject to license terms.
                             Assembled 30 March 2009
[auyantepui]</home/morillo/src/java/scjd/submission>% uname -a
SunOS auyantepui 5.10 Generic_139555-08 sun4u sparc SUNW,Sun-Blade-1000
[auyantepui]</home/morillo/src/java/scjd/submission>%Any ideas?
Thanks,
Carlos.

He quoted the Javadoc which says you have to have the source code available for the Javadoc you are trying to inherit. All I am doing here is restating that, which really is pointless and valueless.It needs the source so that it can copy the documentation you want to copy, which I would have thought was obvious in the first place >
ejp, there is no need to be such an arrogant jerk responding. It is not my fault if you are having a bad day.
I wrote above:
TableModel interface is in javax.swing.table. It is not part of my source code.I am only asking for help and I thought that was the purpose of this forum.
I am not here to get a smart ass response with such an arrogance and attitude.

Similar Messages

  • [SOLVED] BUG tech preview 2, missing ssh option for CVS

    Jdev 11g preview 2 is missing ssh option for CVS.
    Message was edited by:
    user598691
    Jdev was using External Executable option.

    Sorry, turns out, jdev started out trying to use an external executable.

  • Missing select-options for kna1-kunnr

    Hi,
    Has anybody ever come across this before ?
    I've modified a program to add a new select options for kna1-kunnr and added a bit of code that processes the value entered.
    In "development" it all tested OK and the program was transported up to "test".
    In "test" the users tested and everything was OK.
    The program was eventually transported up to "production" but when I run it in production the select-options for kna1-kunnr does not appear on the selection screen ? However, the when I run the program the additional bit of code that I also included does actually execute.
    I haven't been able to look at the code yet because SE38 and SE80 are disabled in "production".
    It sounds to me that the selection screen has somehow not generated correctly when the program was transported into production but the transport logs didn't display any errors or warnings. I have also had the program retransported into production but I still can't see the select-options.
    There are no variants for the program and I'm not getting any security issues on the SU53.
    Any help would be gratefully received.
    Thanks
    Stan

    Hi,
    You can try system->staus->program name. Double click on program name and see if you enter abap editor. You can check your code there.
    Or else just create another transport in development and send to production
    Thanks,

  • Missing calculate option for field properties

    Just downloaded Forms Central yesterday on Mac, can't get text field properties to show option for calculation. There's just a small menu for label justification, text/number/etc, and a few other choices but nothing for calculations as shown on tutorial. I really need help finding the access to include calculations for fields.

    In this case you can also use the simplified field notation, though it would be much easier if you were to change your field names. For example, the first row you want to sum the following two fields:
    "REG. HRS" and "O.T. HRS"
    Since the field names include the period and space characters these need to be escaped, so you'd have to enter the following:
    REG\.\ HRS + O\.T\.\ HRS
    If you were to change the names to:
    "REG_HRS" and "OT_HRS"
    The simplified field notation entry would be simply:
    REG_HRS + OT_HRS
    If you were to further refine the field naming scheme to something like:
    Row 1:  R1.REG_HRS, R1.OT_HRS
    Row 2:  R2.REG_HRS, R2.OT_HRS
    A single script could be used for all of the rows, and called in the calculate event of each "DAILY TOTAL" field. I realize this may sound like jibberish at the moment, but if you want to pursue it, post again. In the mean time, the simplified field notation option will work.

  • Problem creating in some attribute options for class through java API

    Hello everyone,
    I am successfully creating class and its attributes but i am not able to create attributes with its option like IS REQUIRED, IS INDEXED, IS SETTABLE and READ ONLY.....
    public void create_class(String cname,String cdesc,String scname)
    try
    ClassObjectDefinition cod = new ClassObjectDefinition(csession);
    cod.setSuperclassName(scname);
    cod.setName(cname);
    ClassObject co = (ClassObject)csession.createSchemaObject(cod);
    AttributeDefinition ad2 = new AttributeDefinition(csession);
    ad2.setAttributeByUpperCaseName("NAME",AttributeValue.newAttributeValue("Divya"));
    ad2.setAttributeByUpperCaseName("DATATYPE",AttributeValue.newAttributeValue(Attribute.ATTRIBUTEDATATYPE_STRING));
    ad2.setAttributeByUpperCaseName("DATALENGTH",AttributeValue.newAttributeValue(151));
    ad2.setAttributeByUpperCaseName("DESCRIPTION",AttributeValue.newAttributeValue("This the attribute number 2"));
    //here is some problem,,, Is Required is not been able to set
    //ad2.setAttributeByUpperCaseName("REQUIRED",AttributeValue.newAttributeValue(true));
    co.addAttribute(ad2);
    catch(IfsException e)
    e.printStackTrace();
    }

    Hi Kabilesh,
    Could you please let me know the exast soution u had for this?
    I even set the SHLIB_PATH in the environment, but still this problem persists.
    I am compiling the program and making into a shared library as
    cc -c -g -n +z -I$JAVA_HOME/include -I$JAVA_HOME/include/hp-ux -L/opt/java1.4/jre/lib/PA_RISC2.0/server -ljvm Test.c -o Test.o
    ld -b Test.o -L/opt/java1.4/jre/lib/PA_RISC2.0/server -ljvm -o Test.slMy java code is looks like this :
    void create_Jvm()
        JNIEnv * env;
        JavaVM * jvm;
        //JDK1_1InitArgs vm_args;
        /* Note : In JNI1.2 and Java2 SDK 1.4, the new structure JavaVMInitArgs has been introduced.*/
        JavaVMInitArgs vm_args;
        //JavaVMOption options[1];
        jint res;
        vm_args.nOptions = 0;
        vm_args.ignoreUnrecognized = JNI_TRUE;
        /* IMPORTANT: specify vm_args version # if you use JDK1.1.2 and beyond */
        vm_args.version = JNI_VERSION_1_4;
        //vm_args.version = JNI_VERSION_1_2;
        /*In JNI1.2 and Java2 SDK 1.4 the JNI_GetDefaultJavaVMInitArgs method call is not required.*/
        //JNI_GetDefaultJavaVMInitArgs( & vm_args);
        res = JNI_CreateJavaVM( &jvm, (void**)&env, &vm_args);
        if (res < 0) {
            fprintf(stderr, "Can't create Java VM\n Error is :%ld\n ", res);
            exit(1);
        iJvmInitialized = 1;
    } hi
    Check the lib path
    May be u have not included : at the end of the lib
    path that u have added
    THis was the mistake that i did
    kabilesh

  • Using JAXB for classes extending third party objects

    I am trying to use JMX WS connector in my project. I have stuck with a problem I cannot solve. For example, I have class
    public class TypedObjectName extends ObjectName
    I do not know how to annotate this class. If I am trying to use @XmlRootElement annotation and provide no-arg default constructor for this class, JAXB throws an error
    Caused by: com.sun.xml.bind.v2.runtime.IllegalAnnotationsException: 1 counts of IllegalAnnotationExceptions
    javax.management.ObjectName does not have a no-arg default constructor.
    this problem is related to the following location:
    at javax.management.ObjectName
    at com.hp.usage.mgmt.naming.TypedObjectName
    I am not able to modify ObjectName because it is a part of jdk, third party class from javax.management. I need to have this class in JAXB context since one my service has a method with this type, for example
    *public interface PerformanceMeasurement {*
    public TypedObjectName getJob();
    Any ideas to make it workable?

    Yes, right, I have seen this blog and if you read it carefully, there is a note rearding root object
    The root object case is not quite as clean. The result of the unmarshal operation will be the adapted object, then you will need to call the conversion code yourself.
    It means I need to change an API, in case of JMX WS Connector, instead of
    public interface PerformanceMeasurement {
    public TypedObjectName getJob();
    I will provide
    public interface PerformanceMeasurement {
    public TypedObjectNameAdapter getJob();
    Not sure that it is a good idea
    Edited by: tvv2000 on 03.02.2013 21:24

  • Dictionary missing all options but Wikipedia

    I just installed Leopard on my iMac G5 and Powerbook G4. Both Dictionaries are version 2.0. On the iMac I have 4 dictionary choices (New Oxford, Oxford Thesaurus, Apple, and Wikipedia), whereas on the Powerbook there is just Wikepedia, which only works when online.
    Any ideas why this difference, given the identical upgrade?
    Thanks much,
    John

    Thanks. I just tried updating Quicktime and you were right that I did need to update. But unfortunately it has not solved the problem. I am still missing all options for encoding in DVD. Media Encoder also failed to export .h264 for Vimeo this morning - created some very messy-looking files. I'm not sure what is going on, but I'd love it if someone could help me fix it. I'm (of course) in the middle of a big project and supposed to deliver in DVD.
    Thanks
    Carolyn

  • In Preview the option for mailing the selected pdf document in missing.  How do I get it back?

    In Preview the option for mailing the selected pdf document in missing.  How do I get it back?

    From the Mail menu bar, select
    Mail ▹ Preferences ▹ General ▹ Default email reader: Mail

  • Missing "Add Records" and "Refresh Records" options for data sets post domain re-import

    We recently had to re-install the Endeca server and as part of which had to export and re-import the data domains. Everything went fine except for the fact that newly re-imported data sets showcase just the "Manage Attributes" and the "Delete Data Set" options for an administrator login in. The previously available options to "Add Records" and "Refresh Records" beyond manage attributes/Delete Data Set are missing.
    Thoughts? Is there a security setting to enable these?

    So are you talking about the Add Records and Reload Records options for a data set in Studio?
    There are no separate security settings for these options. If a user is an application administrator (is able to edit the application), then they should have access to these options.
    The options are only available for data domains created using the Provisioning Service (created by uploading a file or from the JDBC or BI Server data source from the Data Source Library).
    I don't know if the process of exporting and re-importing the data domains (not sure how you did that) could somehow cause the data sets to no longer know that they were created by the Provisioning Service, in which case those options would not be enabled.

  • [svn:bz-trunk] 21111: Bug: BLZ-578 - [Coverity] potential race condition for class flex.messaging.MessageBroker

    Revision: 21111
    Revision: 21111
    Author:   [email protected]
    Date:     2011-04-21 06:12:37 -0700 (Thu, 21 Apr 2011)
    Log Message:
    Bug: BLZ-578 - potential race condition for class flex.messaging.MessageBroker
    QA: Yes
    Doc: No
    Details: The bug was fixed by change 19598 already, but also adding a minor fix to not call setSystemSettings in initThreadLocal method becuase there are no thread local variables in MessageBroker anymore.
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-578
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/MessageBroker.java

  • I am from India using my iphone4 with Vodafone and  firmware version 5.0.1(9A405). I am unable to access 3G from my device as the CELLULAR DATA NETWORK option in the settings is missing. Any methods or options for fixing the same????

    I am from India using my iphone4 with Vodafone and  firmware version 5.0.1(9A405). I am unable to access 3G from my device as the CELLULAR DATA NETWORK option in the settings is missing. Any methods or options for fixing the same????

    I am from India using my iphone4 with Vodafone and  firmware version 5.0.1(9A405). I am unable to access 3G from my device as the CELLULAR DATA NETWORK option in the settings is missing. Any methods or options for fixing the same????

  • Option for 'continue to this website (not recommended)' is missing in IE10

    Option for 'continue to this website (not recommended)' is missing in IE10 when visiting a my https web server page which is local. It is available in IE9. How do I bring it back?
    running Windows 8 RTM

    I had a similar issue on IE 10 Beta for Windows 7.  This fixed the problem
    1. Go to "run" -> gpedit.msc
    2. Under Computer configuration -> Administrative Templates -> Windows Components -> Internet Explorer -> Internet Control Panel
    3. Under Prevent ignoring certificate error (set to disable even though it's set to undefined).
    Setting this to "disabled" resolved the issue for me, and the 'continue to this website (not recommended)' link reappeared after restarting IE. 
    Interestingly, I set it back to "Not Configured" and the fix persisted.  My wild guess is there is a policy conflict from an older version of IE and resetting this corrected the issue.

  • [svn:bz-trunk] 9713: Bug: BLZ-427 - Add configuration option for BeanProxy#includeReadOnly property.

    Revision: 9713
    Author:   [email protected]
    Date:     2009-08-27 14:09:43 -0700 (Thu, 27 Aug 2009)
    Log Message:
    Bug: BLZ-427 - Add configuration option for BeanProxy#includeReadOnly property.
    QA: Yes
    Doc: Yes - We have a new include-read-only property, see resources/config/services-config.xml
    Ticket Links:
        http://bugs.adobe.com/jira/browse/BLZ-427
    Modified Paths:
        blazeds/trunk/modules/core/src/flex/messaging/endpoints/AbstractEndpoint.java
        blazeds/trunk/modules/core/src/flex/messaging/io/AbstractProxy.java
        blazeds/trunk/modules/core/src/flex/messaging/io/SerializationContext.java
        blazeds/trunk/resources/config/services-config.xml

  • Missing descriptor for [class com.... (In EJB Context)

    After a hot redeploy am getting this exception... Basically Toplink cannot find any desriptor classes any more.
    Used to work fine in weblogic 6.1, not working any more in weblogic 8.1.
    I do have this code to tell Toplink to get descriptor classes from current class loader:
    ClassLoader cl = Thread.currentThread().getContextClassLoader();
    Server s = SessionManager.getManager().getSession(SESSION_NAME, cl);
    And no, putting my classes in weblogic classpath is NOT an option for me.
    Thanks,
    - Rustam -

    I assume this is your ejbRemove of a SessionBean. This is probably not a good idea, the session is normally shared by mutliple session bean instances (normally you do not have a single session bean). This means that in a concurrent system you could be removing the session that other instances of the session bean are using. Also every time a new session bean is created it will have to rebuild the entire session and have an empty cache.
    It would be better to do something like have a getSession() method on your session bean or your app that was used to access the TopLink. It should then refresh this session when the app is redeployed.
    i.e.
    static boolean hasSession = false;
    public Session getSession() {
    if (! hasSession) {
    return SessionManager.getManager().getSession(getClass().getClassLoader(), "TOPS", true, true);
    return SessionManager.getManager().getSession(getClass().getClassLoader(), "TOPS");

  • The default account option in iOS for contacts is missing; while I have multiple account options for mail and contacts are turned on for iCloud and other accounts.

    The default account option in iOS for contacts is missing; while I have multiple account options for mail and contacts are turned on for iCloud and other accounts.  I previously was able to select between my Microsoft Exchange Contacts (work account) and iCloud (personal), but both those options are now gone.  I tried turning contacts for both off and on and rebooting, but it didn't help.  Any ideas?

    Just a guess but if the exchange account is from your employer, your employer may have installed a security profile to your device preventing you from adding or editing contacts in the exchange account by removing the Default Account setting.  You would need to check with your employer's IT department to confirm this.  You could also test this by adding a Gmail account and turning on contacts syncing with Gmail to see if the setting reappears.

Maybe you are looking for

  • HELP ! ASAP . Space Bar and .?123 doesn ' t work ! HELP PLEASE !

    Yesterday my ipod was working fine throughout the day and then around 7 i tried to type in something and press the spacebar then it wouldn't work , i have no clue why it doesnt work and then i tried to use the .?123 button and that one doesnt work ei

  • Unsupported Content-Type

    I have been experimenting with the openESB composite application described here http://jlorenzen.blogspot.com/2007/08/using-jbi-javaee-serviceengine.html This works fine as it appears on this webpage. I have tried to adapt it to act as a proxy to a s

  • ORA-12853 and ORA-04031 simultaneously

    Hello, I am getting the following errors when I try to start Oracle ORA-12853: insufficient memory for PX buffers: current 0K, max needed 2640K ORA-04031: unable to allocate 21544 bytes of shared memory ("large pool","unknown object","large pool","PX

  • Whole root zone creation

    Hi I am building a whole root zone  running Solaris U9  I noticed the   zone does not get installed with  some updated packages  from global zone like the openssl installed in global zone does not get installed in the non global zone and it also requ

  • How to create user group for EIS (Executive Information System) KCBA

    Dear Experts, How to create user group for EIS (Executive Information System) TCode KCBA Regards Saurabh