Closed
Bug 47026
Opened 25 years ago
Closed 7 years ago
Several methods in BookmarkEntry interface doesn't throw Unimplemented exception
Categories
(Core Graveyard :: Java APIs to WebShell, enhancement, P3)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: ovk, Assigned: edburns)
Details
(Whiteboard: suntrak-n6)
Attachments
(2 files)
Several methods in BookmarkEntry interface, inherited from
javax.swing.tree.MutableTreeNode:
remove(int index),
remove(MutableTreeNode node),
removeFromParent(),
setUserObject(Object obj)
doesn't throw Unimplemented exception.
Supposed solution:
1. Add string "import org.mozilla.webclient.UnimplementedException;" in file
RDFTreeNode.java;
2. Add string "throw new UnimplementedException("\nUnimplementedException
-----\n API Function BookmarkEntry::METHOD_NAME has not yet been
implemented.\n");" in the body of those methods in file RDFTreeNode.java;
Fix checked in.
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
| Reporter | ||
Comment 3•25 years ago
|
||
Unfortunatly, method setUserObject(Object obj) still doesn't throw Unimplemented
exception.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Comment 4•25 years ago
|
||
Adding Status whiteboard keyword to track all Webclient existing bugs
Whiteboard: suntrak-n6
Comment 5•25 years ago
|
||
Also method getAllowsChildren should throw Unimplemented exception.
This method always return true:
boolean result = true;
return result;
Comment 7•25 years ago
|
||
Fix checked in.
Status: REOPENED → RESOLVED
Closed: 25 years ago → 25 years ago
Resolution: --- → FIXED
| Reporter | ||
Comment 9•24 years ago
|
||
Method setUserObject(Object obj) still doesn't throw Unimplemented
exception.
I will create an attachment with a fix.
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
| Reporter | ||
Comment 10•24 years ago
|
||
Comment 11•21 years ago
|
||
Oleg, do you have any feedback concerning your fix?
Updated•14 years ago
|
Product: Core → Core Graveyard
Comment 12•7 years ago
|
||
Java APIs to WebShell isn't a thing anymore. Closing.
Status: REOPENED → RESOLVED
Closed: 25 years ago → 7 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•