A bug in UML documentation in SJSE 8.1

Hi!
Is There a bug in UML documentation in SJSE 8.1?
When I write some text in editor, it insert ENTER and Blanck lines in my text.
What is hapend? What am I doing?
Thanks!

Hi,
Is There a bug in UML documentation in SJSE 8.1?
When I write some text in editor, it insert ENTER and
Blanck lines in my text. Could you please be more specific? What is an action which causes insertion
of Enter and Blank lines? Is it after Save? Or after reopen of project? Or
after/before something else? It would be valuable if you provide an example of
your text before your action and after it.

Similar Messages

  • Is there any bug in the documentation??

    hi guyes,
    i am refering "Oracle® Data Guard Concepts and Administration 10g Release 2 (10.2) B14239-05 August 2008" to configure physical standby database on my same host having my primary database.
    i told you it was my worst experience using any oracle documentation.
    i am using oracle 10g R2,and followd all procedure to configure physical standby database,but i think there are some bugs in this document.
    1. they have told to create controlfile for the stadby database but didnt ask to edit controlfile for new path of datafiles.
    2.they have ask to copy all primary datafiles to stdby location,but when you try to open standby database,it dosent match the path of stdby datafile due to same controlfile.
    these and there are many bugs are in this document.
    they ask to edit tnsnames.ora file but dosent provide the procedure to do so.
    i mean this is not the complete guide to follow.
    a hopeless thing
    is this a bug???
    thanks and regards
    VD

    vikrant dixit wrote:
    hi guyes,
    i am refering "Oracle® Data Guard Concepts and Administration 10g Release 2 (10.2) B14239-05 August 2008" to configure physical standby database on my same host having my primary database.
    i told you it was my worst experience using any oracle documentation.
    i am using oracle 10g R2,and followd all procedure to configure physical standby database,but i think there are some bugs in this document.I'm assuming that you specifically mean Section 3.2 Step-by-Step Instructions for Creating a Physical Standby Database
    1. they have told to create controlfile for the stadby database but didnt ask to edit controlfile for new path of datafiles.That isn't required if you follow the step by step guide since the example uses the DB_FILE_NAME_CONVERT and LOG_FILE_NAME_CONVERT database initialisation parameters. In particular see step2 and Example 3.5
    2.they have ask to copy all primary datafiles to stdby location,but when you try to open standby database,it dosent match the path of stdby datafile due to same controlfile.
    these and there are many bugs are in this document.If you have followed the steps as described in the document you won't get the errors that you describe above. You'll also note in the backup and recovery guides there is a similar example for database duplication on the same host which also uses the file_name convert parameters. If you still require help it might be useful to list the precise error and what you have set the relevant parameters to.
    they ask to edit tnsnames.ora file but dosent provide the procedure to do so.They do however, directly in the step by step guide, refer to the relevant manual - the Net Services adminsitrators guide - that contains a section http://max00994:7777/docs/db10gr2/network.102/b14212/naming.htm#sthref700 on managing net service names, if you'd read it you'll see that there are 3 different tools that you could use and that the exact steps to follow depend on your environment, given this complexity it isn't unreasonable in my view to link you directly to where the information can be found rather than to include the best part of an entire chapter on service naming in the middle of a step-by-step guide.
    i mean this is not the complete guide to follow.This particular guide does deal with standby configuration, complete with practical examples that do in fact work when followed diligently, I should know I've followed them previously on more than one occasion. It doesn't of course deal with underlying subject matter that is referenced elsewhere. I don't know what Oracle's target audience is for this book, but wouldn't think it unreasonable to assume that a dba considering building a dataguard installation was already familiar with Oracle SQLNet (it would certainly be required knowledge in my book).
    a hopeless thing
    is this a bug???As the documentation works as written I wouldn't consider it a bug. I don't personally like the particular names that Oracle have chosen for their examples, primarily because I don't like the idea of naming database services after physical location in a standby environment. You can however, if you have a support contract, log bugs against the documentation and Oracle do correct the bugs - though unfortunately in the next release of the docs and not online.
    Niall Litchfield
    Oracle DBA
    http://www.orawin.info/

  • Bug in JDev documentation re: debugging servlets

    This is in the document titled "Using the Servlet Debugger Class" found in the JDeveloper electronic documentation.
    I'll quote the first bit:
    "You can use the ServletDebugger class to tailor the debugging environment to your servlets. Using the ServletDebugger class, you can specify:
    the JDeveloper root directory
    which servlet's to register with the JDeveloper web server. The servlets you specify will appear in the Servlet Launcher.
    the document root directory for the integrated web server
    the starting URL for the Servlet Launcher
    the JDeveloper web server port
    URL arguments
    To configure the debug environment:
    For an HTTP servlet or for any servlet created outside of the JDeveloper environment, import the following package in your servlet's Java file:
    import oracle.jdeveloper.servlet.*;"
    Whoops, this last part is wrong. It should instead be "import oracle.jdeveloper.debugger.*;" I could not get it to compile with the first one, but the 2nd one worked fine.
    -- Alex
    null

    Alex,
    Thanks for pointing this out.
    This has been fixed for the JDeveloper 3.1 documentation.
    Thanks,
    -John
    null

  • Bug in ThreadLocal documentation?

    This example shows up in the docs here: http://download.oracle.com/javase/6/docs/api/java/lang/ThreadLocal.html
    <code>
    import java.util.concurrent.atomic.AtomicInteger;
    public class UniqueThreadIdGenerator {
    private static final AtomicInteger uniqueId = new AtomicInteger(0);
    private static final ThreadLocal < Integer > uniqueNum =
    new ThreadLocal < Integer > () {
    @Override protected Integer initialValue() {
    return uniqueId.getAndIncrement();
    public static int getCurrentThreadId() {
    return uniqueId.get();
    } // UniqueThreadIdGenerator
    </code>
    I believe that getCurrentThreadId() should be changed to:
    <code>
    return uniqueNum.get();
    </code>
    Otherwise initialValue is never executed. Also, uniqueId is not ThreadLocal so all threads calling getCurrentThreadId() will return the same value all the time.
    Am I missing something?
    Sorry for the code formatting, it's not clear to me how to properly format it for this forum.

    843904 wrote:
    I believe that getCurrentThreadId() should be changed to:
    return uniqueNum.get();Otherwise initialValue is never executed. Correct. That's a bug in the doc.
    Also, uniqueId is not ThreadLocal so all threads calling getCurrentThreadId() will return the same value all the time.Wrong. At least, wrong once you make the above fix.
    Both of which you could have found out by simply running, fixing, and re-reunning the code. At which point your real question becomes, "Why do the different threads not share the same value?"
    Remember, once you fix the typo, uniqueId is only ever used by initialValue(), which is only called once per thread. So thread T1 calls uniqueNum.get() the first time, which calls initialValue(), which, which calls getAndIncrement(). From then on, any time T1 calls uniqueNum.get(), it's just getting the value that was set the first time by initialValue(). T1 never looks at uniqueId again. T2 comes in, does the same thing on its first call to get(), and gets the next ID, and then never looks at uniqueId again. And so on...
    Am I missing something?Apparently either the fact that each thread only calls initialValue() once, or the fact that initialValue() is the only place that looks at uniqueId. Maybe both. :-)
    Sorry for the code formatting, it's not clear to me how to properly format it for this forum.[code] and [/code] or just {code} before and after.

  • Uml documentation

    I'm doing a final year project - it's a web application, I've used jsp's and the struts framework partly. javabeans etc etc.
    Can I do a class diagram for this? since the java classes dont really have much information in them.
    Can I do sequence diagrams or interaction diagrams?
    I've done the use cases and the use case diagram.
    I did a course for UML modelling - but it was only for java applications and I'm not sure what to do in this circumstance.
    Can anyone help?
    Thank you

    hi
    its better that u do prepare class diagrams, if possible in Rational Rose. it would help u understand completely the flow of information and objetcs transfer. then after a detailed review of the class diagram Rose would generate the code for u which u could very well use as the skeleton code.
    i have done it in three Struts projects and it makes life easy. Designing becomes hectic but then coding becomes a child's play.
    all the best
    reply if u r not clear

  • Bug in uml designer

    Hi,
    I'm drawing a uml diagram,
    I already have about 20 classes on the diagram.
    I create a navigable relationship between 2 classes.
    I choose, visual properties, because I don't want to see the relation name on my diagram.
    As I click on Visual Properties:
    ------ quote -------
    The application has tried to de-reference an invalid pointer. This exception should have been dealt with programatically. The current activity may fail and the system may have been left in an unstable state. The following is a stack trace.
    java.lang.NullPointerException
         oracle.bm.diagrammer.ActionStep oracle.bm.diagrammer.shape.BaseDiagramShape.getActionStep(int)
              BaseDiagramShape.java:3227
         void oracle.bm.diagrammer.BaseDiagramView.invokeShapeProperties()
              BaseDiagramView.java:2849
         void oracle.bm.diagrammer.BaseDiagramView$1.processEvent(java.awt.event.ActionEvent)
              BaseDiagramView.java:328
         void oracle.bm.diagrammer.BaseDiagramView$1.actionPerformed(java.awt.event.ActionEvent)
              BaseDiagramView.java:305
         void javax.swing.AbstractButton.fireActionPerformed(java.awt.event.ActionEvent)
              AbstractButton.java:1450
         void javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(java.awt.event.ActionEvent)
              AbstractButton.java:1504
         void javax.swing.DefaultButtonModel.fireActionPerformed(java.awt.event.ActionEvent)
              DefaultButtonModel.java:378
         void javax.swing.DefaultButtonModel.setPressed(boolean)
              DefaultButtonModel.java:250
         void javax.swing.AbstractButton.doClick(int)
              AbstractButton.java:279
         void javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseReleased(java.awt.event.MouseEvent)
              BasicMenuItemUI.java:886
         void java.awt.Component.processMouseEvent(java.awt.event.MouseEvent)
              Component.java:3715
         void java.awt.Component.processEvent(java.awt.AWTEvent)
              Component.java:3544
         void java.awt.Container.processEvent(java.awt.AWTEvent)
              Container.java:1164
         void java.awt.Component.dispatchEventImpl(java.awt.AWTEvent)
              Component.java:2593
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
              Container.java:1213
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
              Component.java:2497
         void java.awt.LightweightDispatcher.retargetMouseEvent(java.awt.Component, int, java.awt.event.MouseEvent)
              Container.java:2451
         boolean java.awt.LightweightDispatcher.processMouseEvent(java.awt.event.MouseEvent)
              Container.java:2216
         boolean java.awt.LightweightDispatcher.dispatchEvent(java.awt.AWTEvent)
              Container.java:2125
         void java.awt.Container.dispatchEventImpl(java.awt.AWTEvent)
              Container.java:1200
         void java.awt.Window.dispatchEventImpl(java.awt.AWTEvent)
              Window.java:922
         void java.awt.Component.dispatchEvent(java.awt.AWTEvent)
              Component.java:2497
         void java.awt.EventQueue.dispatchEvent(java.awt.AWTEvent)
              EventQueue.java:339
         boolean java.awt.EventDispatchThread.pumpOneEventForHierarchy(java.awt.Component)
              EventDispatchThread.java:131
         void java.awt.EventDispatchThread.pumpEventsForHierarchy(java.awt.Conditional, java.awt.Component)
              EventDispatchThread.java:98
         void java.awt.EventDispatchThread.pumpEvents(java.awt.Conditional)
              EventDispatchThread.java:93
         void java.awt.EventDispatchThread.run()
              EventDispatchThread.java:85
    ---- end quote -----
    It says I should restart and let you know. This is what I'm doing right now.
    cheers.

    Hi Christophe,
    Many thanks for letting us know about this problem. We have not been able to reproduce this problem on JDeveloper 9.0.3 at the moment.
    Could you please confirm a couple of things for us?
    - Which version of JDeveloper are you using?
    - How are you invoking Visual Properties?
    Also, would it be possible for you to send us a small project which exposes this behaviour? We'd really like to be able to track this down and fix it.
    Thanks,
    Joe Boon
    JDeveloper QA

  • Where is the conceptual overview / UML / Documentation?

    I am trying to audit the OSMF framework for adoption at work.  However, it is difficult to get a handle on the scope of this project. I have no idea what your packages are metaphors for (speaking of, why do the asdocs include the entire AS3 codebase?) or the patterns and concepts you based the code on. Heck, I can't even tell what exactly this framework does! The only insight I have into the thinking behind this project is by reading bits from the devs on these forums. Believe me, I know how hard it is to provide documentation for the product while trying to support an ongoing development process. I just hope you guys pause the coding and spend a couple weeks really documenting this project. :-)
    Are there any posts or anything that will give me a head start on this information? I found a couple random blog entries that had some info on Strobe, but they were not very thorough.
    Thanks,
    Tim Beynart

    We're currently working on a developer's guide which will hopefully fill some of the gaps you mention.  Here's a compendium of useful links for getting started (I'm sure you've already found some of these):
    Architectural Overview: http://opensource.adobe.com/wiki/display/osmf/Strobe+Architectural+Overview
    Intro to Traits (PDF): http://opensource.adobe.com/wiki/download/attachments/34373769/traits+intro.pdf?version=1
    Features & Roadmap: http://opensource.adobe.com/wiki/display/osmf/Features
    Specifications: http://opensource.adobe.com/wiki/display/osmf/Specifications
    Building a HelloWorld app with OSMF: http://blogs.adobe.com/osmf/2009/09/building_a_helloworld_app_with_osmf.html
    Intro to OSMF (video from MAX session): http://2009.max.adobe.com/online/session/332
    Technical Intro to OSMF: http://blogs.adobe.com/osmf/2009/08/technical_intro_to_osmf.html
    Intro to OSMF (by Jodie O'Rourke): http://jodieorourke.com/view.php?id=111&blog=news
    If you'd rather see running code, the most succinct app for seeing what OSMF can do is the ExamplePlayer  (source is here).  It shows a wide variety of examples, each of which is represented by the exact same base class (MediaElement), which is what allows the player code to be decoupled from the various media implementations.
    If you make it through all of the above :-), I'd be curious to know a) whether they're helpful and b) what's missing to help you get started.

  • Dynamic region bugs and bad documentation

    I cannot get the second taskflow to behave correctly in a dynamic region.
    Here's my scenario:
    In the pursuit of resusablilty, I have two taskflows that are coming from ADF Library Jars into a master application.
    Both taskflows have their own associated application modules, which appear as data controls in the master project.
    Following the instructions in the Fusion Developers guide, I create a dynamic region and dynamic links.
    After swapping to the second task flow, when I click on a different table, I get an error that a target is unreachable:
    Target Unreachable, 'RoleId' returned null
    For more information, please see the server's error log for an entry
    beginning with: Server Exception during PPR, #1{code}
    I posted the problem originally under this thread: [dynamic region errors
    and got a response that I didn't understand -- both taskflows have data-control-scope = shared.
    In contrast to the problem using a dynamic region, if I build a different page in the master application and use each taskflow as *separate* regions (via a tabbed panel), they work fine.
    So it doesn't seem there is anything wrong with the taskflows per se, but rather something in the dynamic region switching mechanism that is broken.
    I'd appreciate hearing from anyone who has had similar problems or anyone who knows of a solution.
    In exasperation, lili5058
    UPDATE
    Sorry for the earlier rant. I figured out the reason for the odd behavior and it has to do with the code generated by the wizard. This code isn't so much wrong as it is short-sighted. Here's the code generated for the managed bean by the wizards for creating a dynamic region and dynamic link that is put into *backingBeanScope*:
    {code:java}package view.beans;
    public class DynamicRegionBean {
    private String taskFlowId = "/WEB-INF/taskflow1.xml#first-taskflow";
    public DynamicRegionBean() {
    public TaskFlowId getDynamicTaskFlowId() {
    return TaskFlowId.parse(taskFlowId);
    public String firstTaskflowtaskflow() {
    taskFlowId = "/WEB-INF/taskflow1.xml#first-taskflow
    return null;
    public String secondTaskflowtaskflow() {
    taskFlowId = "/WEB-INF/taskflow2.xml#second-taskflow";
    return null;
    }{code}
    The user is taken to the second task flow by clicking the link that executes the secondTaskflowtaskflow() handler, however, any subsequent requests take the user back to the first taskflow, i.e., the one assigned to the private instance variable, since that's how the wizard wrote the code. This explains why the table on the second taskflow displayed "Fetching Data . . .". The table's content delivery was set to lazy, so when the browser issued the AJAX request to get the data for the table, the task flow switched back to the first one and thus making the data unavailable. Changing the the content delivery attribute value to immediate, brings up the data initially, but any subsequent work on that taskflow routed the user right back to the first taskflow.
    I ended up fixing the problem by adding the TaskFlowId (data type) to the pageFlowScope map, so it would be remembered across requests until the user deliberately requests a different taskflow.
    Edited by: lili5058 on Feb 7, 2009 12:56 PM
    Edited by: lili5058 on Feb 7, 2009 5:06 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi,
    chances are you are hitting a bug. But this is hard to say from here. If you want, we can further track the issue down. I suggest you exclude the use of ADF libraries and verify that the scenario works if the two taskflows work in the mentioned scenario of they are both defined in the project itself. If this works then it seems like a bug that should be filed. Can you verify this ?
    Frank

  • A bug in Y value?

    Hi,
    In the follwoing trace code, I got correct values for the
    first three lines, e.g., Height, width, and x values. But Y is
    always 0 for all controls I tried. And obviously they are at
    different vertical positions. So this is a bug of Flex or something
    else?
    Thanks.
    trace("Height: " +
    this[page.@id][Form.@id][Error.ObjID].height);
    trace("Width: " +
    this[page.@id][Form.@id][Error.ObjID].width);
    trace("X: " + this[page.@id][Form.@id][Error.ObjID].x);
    trace("Y: " +
    this[page.@id][Form.@id][Error.ObjID].y);

    Hi,
    Is There a bug in UML documentation in SJSE 8.1?
    When I write some text in editor, it insert ENTER and
    Blanck lines in my text. Could you please be more specific? What is an action which causes insertion
    of Enter and Blank lines? Is it after Save? Or after reopen of project? Or
    after/before something else? It would be valuable if you provide an example of
    your text before your action and after it.

  • N78 v20.149 Bug List Thread

    Hi everyone, thanks for all your advice and comments now that v20.149 has been released here (only on FOTA and not NSU yet) are the changes I have noticed, along with some newly discovered bugs:
    NOTE: all the documented features/improvements are performed with the Theme Effects turned on.
    Changes/Improvements/New features I have noticed from v12.046 to v20.149:
    Standby screen:
    *While scanning for wireless networks in the home screen, instead of saying “No networks found” as in the past, it says “No WLANs available”, also some other minor name changes in this menu.
    *Share online icon in standby screen seems to be different
    *When going back to the music player via the standby screen, it goes straight into the player without a fading in/out transition as it did before when Theme Effects are turned on (an instantaneous response). However, for going into other sections from the standby screen the fade in/out transition still occurs.
    *When Music Player is operating, and seeing the track name on the screen, and then when one song ends and goes to the next track, the speed at which this happens is much improved although not flawless (there is still some lag).
    *Scrolling up and down through the entries in the standby screen is very fast and not slow like before.
    Call log, Contacts and calling function:
    *Calling speed (from standby screen to Contacts or Call Log) and transition to call/disconnected screens much faster and improved
    *Faster resume of music playback after call is ended
    *Volume bar is changed from ten dotted increment to continuous coloured volume triangle (this has also been reflected in other menus and options throughout the phone)
    Maps:
    *Maps updated to version 2.0
    Music Player:
    *Much faster interface and speed through all menus
    *Pressing volume keys is much improved and faster and more accurate response than before (where it may have taken time in the past for the volume level to update)
    *Music controls (i.e. Rewind, Fast forward, play/pause, stop) are no longer the same colour as the matching theme, now it is just the same light green colour across all themes
    *Visualisations are still a bit slow, but faster than before
    Photos:
    *Transition into the Photos application is much faster than before
    *Scrolling through photos and videos and the like is still jerky and thumbnails still take a while to be updated from pixelated to clear thumbnails
    Settings:
    *In Themes, there is a new theme called Music (very yucky looking I must admit)
    *Power saver now includes “Now playing” option, so when the backlight goes off, the currently playing song and time are displayed on the screen for a number of seconds before disappearing. This occurs before keypad lock is activated, and when any key is pressed, the names of the song light up (in green or red). Also when going from one track to the next while this screensaver is activated, the date is displayed briefly.
    Other:
    *General speed improvements across all menus and applications
    *Help function is much faster and speed improved
    *New help topics added to Help function
    *Speed dial now works without any lag
    *New RealPlayer interface and version updated (where the RealPlayer screen is no longer displayed but grey bars on top and bottom of the video)
    *About application has been updated for the year dates so that they are all “2009”.
    *Installation of applications and refresh of available applications within the Application Manager is much improved and faster (although icons for installed applications are now not displayed)
    *”Application update” added to Applications
    *Carousel menu has new options under each heading
    *Navi-wheel seems to have been tweaked a bit more
    *Background light settings actually work now
    *Truncated email-account login name fixed
    Other documented changes that have been stated by others for v13.052 and now v20.149:
    *Improvements:
    Connectivity:
    - System Error message appears when trying to stream a clip from a busy server
    - Timestamp corruption error in long streaming which leads to 'Error in receiving live
    content'
    -VPN not working through WLAN in offline mode
    - Priorities of protected IAPs could not be changed via UI
    - Mail For Exchange did not play tone for every mail received as per S60 3.0 and 3.1
    products
    - DM settings were not generated automatically when Email settings are defined in variant
    Photos:
    - Thumbnail displayed does not match actual image if user deletes thumbnail file in
    memory card private folder
    Internet:
    - UI issues when viewing Youtube videos
    Music:
    - Playing WMA audio files improved
    - IHF cannot be enabled during call when FMT is on
    - DRM: The ampersand character ('&') encoding is not correct
    Other changes:
    - Weekly recurring clock alarm always sets for the current weekday regardless of the day
    chosen
    - Contact Groups are not titled correctly
    - Help text located in settings/general/Navi Wheel
    - Help text for Voice commands
    - Access point generation difficulties after factory reset
    New features:
    - Boingo – Cancelled
    - Comes With Music (CWM) - This SW Version includes CWM enablers
    Changes:
    Bluetooth
    * N78 to CK-07W Audio Lost at regular intervals
    * Call Not Working With Bluetooth Headset
    WLAN
    * WLAN APN passed along with SDP contents is not utilized by Real Player
    Power Management
    * Sleep current too high while video applications at background
    GPS
    * The phone freezes when launching the Trip distance by clicking the link in Help content
    PC Suite
    * Harvester Server doesn’t close all necessary connections to other services during backup/restore
    SIM/USIM
    * Incorrect error codes are passed by TSY from SIM server to application layer for Smart card feature
    Radio
    * RadioLauncher gets corrupted state when VisualRadio exits
    * FM frequency range extends below 87.5MHz
    Podcast
    * Podcasts: garbled search results when entering a number as the search title
    Photos
    * Crash when launching Photos application after restoring from memory card
    * Slideshow doesn’t work after used device for a while
    Internet
    Maps
    * Maps:”My position” and “My place” are translated into the same Chinese
    Messaging
    * E-mail username truncated causes problem with login
    * Adding new number from SMS to existing number in ADN causes corruption
    Download!
    * Download client doesn’t work with certain operators WAP APN
    Other Changes:
    * Java platform version number not updated in IAD
    * Widget installer plugin cannot be upgraded
    * Removing battery during alarm makes the device unusable
    * Stub sis file doesn’t include httptransfer component
    * Paths are incorrect in cenrep creation file (Naviscroll and FMTX affected)
    * Internal Debugging tool wrongly included in Production SW
    * Device cuts off URL parameter in RTSP streaming link
    * Delivery via Device Management corrupts EAP-FAST PAC file
    * TCK failure with HTTP and AMR Combination
    * SpaceUI doesn’t allow for changes when a default number is assigned in Phonebook
    * Display corrupts with 3rd party application BestCalc
    Bugs/missing features already found:
    *Will not let you enter the Date and Time settings, instead going back to the main menu
    *Will not let you enter settings for the alarm Clock, instead going back to the main menu (related to the Date and Time above)
    *Carousel menu by pressing that small silver key is still inconsistent, sometimes appears with scroll bar and performance is still slow
    *Still no N-gage client within firmware
    I have yet to check all the bugs that were documented for v12.046 in the thread /discussions/board/message?board.id=swupdate&thread.id=42047&page=4, but I will go about that very soon and document all the changes here in this thread. But so far, so good, the firmware appears to be a lot better and more stable than 12.046. Again, thanks to all users for their current feedback on problems. Remember to be sure to add your experiences with the N78 here!
    Message Edited by celandine on 15-Jan-2009 02:59 PM

    My n78 froze at the standby screen when it rebooted itself during the upgrade from v12 to v20.149. The background image and active standby icons appeared, but nothing else - no network provider name, no battery or signal level indicator, no clock, no calender entries, no wlan scanning, no share online. I left it for 15 minutes or so before crossing my fingers and removing and replacing the battery (since the power button did nothing). Not a great start I thought. But it started up ok.
    new/unfixed bugs
    The clock alarm did not switch the phone back on after the first 5 minute snooze, but it did do the snooze resume thing when I actually switched the phone on 15 minutes later... I setup a "within 24 hours" alarm and that had no problems switching on the phone several times with a 1 minute snooze so I guess I'll have to wait until tomorrow morning to see if my weekday alarm snoozes properly now...
    The FM transmitter was transmitting at 107.5 even though the settings screen and active standby message showed 106.9 which I had set it to before the update... Viewing and saving the fm transmitter settings did update the frequency to 106.9 though.
    I'm still unable to set default numbers for some contacts - the contacts app exits to the standby screen.
    Unable to zoom camera/photos when musicplayer and fm transmitter activated.
    improvements
    At least the loudspeaker function works after using the FM transmitter now.
    Playback of videos through the images app seems much improved - i.e. it actually plays video clips all the way through without freezing the picture.
    I'll post more if I notice anything

  • Flex 2 : Possible bug in Slider

    Hi,
    I have been trying to restrict the thumbs of an HSlider from
    overlapping.
    Setting allowThumbOverlap to false did not work.
    I noticed that the ability of the thumbs to overlap is
    directly related to the maximum value allowed for the slider.
    Given below is an example for the same. I presume this must
    be a bug, since the documentation mentions
    nothing about this. If somebody can throw more light on this,
    it would be great.
    TestSlider.mxml
    ===========================
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*">
    <mx:HBox>
    <mx:Label text="Maximum 13" width="90"/>
    <mx:HSlider id="slider13" width="180" thumbCount="2"
    snapInterval="1" minimum="0" maximum="13" dataTipPlacement="bottom"
    />
    <mx:Label text="Thumbs overlap in both directions"
    width="300"/>
    </mx:HBox>
    <mx:HBox>
    <mx:Label text="Maximum 14" width="90"/>
    <mx:HSlider id="slider14" width="180" thumbCount="2"
    snapInterval="1" minimum="0" maximum="14"
    dataTipPlacement="bottom"/>
    <mx:Label text="Thumbs overlap from left to right"
    width="300"/>
    </mx:HBox>
    <mx:HBox>
    <mx:Label text="Maximum 15" width="90"/>
    <mx:HSlider id="slider15" width="180" thumbCount="2"
    snapInterval="1" minimum="0" maximum="15"
    dataTipPlacement="bottom"/>
    <mx:Label text="Thumbs do not overlap" width="300"/>
    </mx:HBox>
    </mx:Application>
    ===========================
    Regards!
    Santosh

    Santosh,
    This is indeed a bug. Thank you for bringing it to our
    attention. As a
    workaround, try using different values for the width property
    or don't
    specify a width at all.
    Jason Szeto
    Adobe Flex SDK Developer
    "stchavan" <[email protected]> wrote in
    message
    news:e9lh3m$sv0$[email protected]..
    > Hi,
    >
    > I have been trying to restrict the thumbs of an HSlider
    from overlapping.
    > Setting allowThumbOverlap to false did not work.
    > I noticed that the ability of the thumbs to overlap is
    directly related to
    > the
    > maximum value allowed for the slider.
    > Given below is an example for the same. I presume this
    must be a bug,
    > since
    > the documentation mentions
    > nothing about this. If somebody can throw more light on
    this, it would be
    > great.
    >
    > TestSlider.mxml
    > ===========================
    > <?xml version="1.0" encoding="utf-8"?>
    > <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*">
    > <mx:HBox>
    > <mx:Label text="Maximum 13" width="90"/>
    > <mx:HSlider id="slider13" width="180" thumbCount="2"
    snapInterval="1"
    > minimum="0" maximum="13" dataTipPlacement="bottom" />
    > <mx:Label text="Thumbs overlap in both directions"
    width="300"/>
    > </mx:HBox>
    > <mx:HBox>
    > <mx:Label text="Maximum 14" width="90"/>
    > <mx:HSlider id="slider14" width="180" thumbCount="2"
    snapInterval="1"
    > minimum="0" maximum="14" dataTipPlacement="bottom"/>
    > <mx:Label text="Thumbs overlap from left to right"
    width="300"/>
    > </mx:HBox>
    > <mx:HBox>
    > <mx:Label text="Maximum 15" width="90"/>
    > <mx:HSlider id="slider15" width="180" thumbCount="2"
    snapInterval="1"
    > minimum="0" maximum="15" dataTipPlacement="bottom"/>
    > <mx:Label text="Thumbs do not overlap"
    width="300"/>
    > </mx:HBox>
    > </mx:Application>
    > ===========================
    >
    > Regards!
    >
    > Santosh
    >

  • JATO UML?

    Is there any UML documentation of JATO? I would love to see generic
    sequence diagrams and conceptual class diagrams is they exist.
    Steve

    Look in the Files section and there are class and sequence diagrams
    for JATO 1.1.
    Steve
    --- In iPlanet-JATO@y..., "giuliovuolo" <giulio.vuolo@c...> wrote:
    >
    Yes, please. Are these available?
    If not, I might do them and I will post.
    Giulio
    --- In iPlanet-JATO@y..., "Steve Winer" <stephen_winer@y...> wrote:
    Is there any UML documentation of JATO? I would love to see generic
    sequence diagrams and conceptual class diagrams is they exist.
    Steve

  • UML tool: plugin vs. standalone

    We use Eclipse in our company and are looking for a UML tool.
    What is better: A plugin or a standalone tool?
    Or do you have any other ideas (what is important concerning an UML tool)?

    I am a beginner in UML and programming. But I tell you my opinion.
    What you suggest any painting tool could do (except the reverse engeneering for documentation of the design).
    I think it would be handy to have most information (UML and of course source code) available inside the IDE. So I prefer a plugin.
    If you need to maintain a component, you have everything together: analysis diagrams and design diagrams, all accessible with the IDE. So you waste no time using another standalone tool looking for the UML documentation or even make errors because of that extra effort. We have many packages and our components are spread across different packages.
    I think forward engineering is useful. Many of our programmers are inexperienced with UML. If they have a tool with roundtrip engineering then this helps them learning UML because they see the results in the code. Further there is no need to convert the diagram manually to source code (which means spending extra time) because of forward engineering. Its easy to adjust the output code to the team preferences. This can be done with a few mouse clicks in Eclipse.
    If the programmer creates and maintains the UML design documentation while he programs a component, then this helps himself to keep track of it. Thus he will be faster finishing his work in my eyes. He will also do less errors because he uses UML to keep track of his work. Our components can be quite complex, using each other in all possible ways.
    I agree that it is important to have a nearly perfect roundtrip engineering. It should not be repository based but stored in the source code.
    Reverse Engineering is limited in most tools to class diagrams. But reverse engineering can be also applied to sequence and collaboration diagrams.
    And if a UML tool supports requierements engineering it helps you to locate the piece of code very easily which you need to change if you have to do a software change.
    I used Poseidon free edition to reverse engineer a component. It was uselesst to me. We use a framework to create components and the components are spread across different packages. It is not possible in Poseidon to import a few classes and let Poseidon import also all classes which are connected to the imported classes. Difficult to explain. With TogetherWSE the Job was much more easy to create a "after work" UML documentation. Futhermore Poseidon lacks of many features of UML.
    We start to build a ERP with a framework we bought and which still is in development. The documentation is not good of the framework. I want to use a tool which helps me keep track of the very complex components we will have to program so that I don't drown.

  • Reproducable Scrollbar Bug. please confirm?

    Please can someone confirm they can reproduce behaviour?
    I just wasted 2 hours trying to figure it out and Im 99% sure
    its a bug.
    Add a VScrollBar
    Set minScrollPosition to 0, maxScrollPosition to 100
    now at runtime, update the 4 properties of the scroller as
    follows....
    scroller.pageSize = 400;
    scroller.minScrollPosition = 0;
    scroller.maxScrollPosition = 400;
    scroller.pageScrollSize = 200;
    At this point, dragging the thumb tab of the scroller will
    NOT update the scrollPos correctly, nor will the scrollEvent be
    correct. It behaves as if Scrollposmax is still 100.
    If you click the scrollbar client area, or use the arrows, it
    works fine. But dragging the thumbtab does not.
    Now get rid of the 4 updates, and simply use
    scroller.setScrollProperties(400, 0, 400, 200)
    You can see this is instantly different because the thumb tab
    changes in height. dragging this works as expected
    Very frustrating. Maybe there was a method I should have
    called after updating the 4 properties, but if so the docs made no
    mention of it.
    Its a bug as far as Im concerned.
    Does anyone agree?

    I haven't tried to reproduce your results, but maybe you need
    to call invalidateDisplayList() on the item after you update those
    properties. That should make the necessary call to
    setScrollProperties() for you.
    I don't know about the status of this as a bug - quoth the
    documentation - "In general, setting a property on a component
    automatically calls the appropriate invalidation method" - although
    that brings up the question of what kind of scope the word
    "general" entails.

  • UML for Java

    Hi,
    I'm looking for a good book (or URL) regarding J2EE application design using UML... That is, I know a bit about Java and a little about OO principles but I don't know where to start in terms of putting what I know into practice.
    Would be grateful for some advice - and thanks in advance!

    Thanks for the feedback - I will check out Martin
    Fowlers book and the URL. Also, I guess my question
    was a bit dum in the sense that UML is implementation
    independent (long words now) but I find the thought
    of implementing a set of UML documentation extremely
    daunting, to say the least. Any
    books/resources/other on this?Start with Fowler.
    "implementing a set of UML documentation" - you mean a complete design? Yes, it can be a lot of work, depending on how rigorous you want to be. (For example, doing a complete UI design will become quite a challenge, indeed.)
    Fowler has some fine thoughts about UML and its uses. He says there are two schools of thought:
    (1) Sketchers, or folks who use snippets of UML to communicate their ideas to others. These folks are used to working on sheets of paper and whiteboards, and
    (2) "UML as blueprint" folks want to treat UML designs like engineering drawings. Their goal is to take a complete design and either throw it over the wall for implementation, much like engineering firms used to heave drawings over the wall to manufacturing departments, or pass it to a model driven development package that would parse the UML and spit out a complete code base.
    I'm firmly in the sketchers camp.
    I don't think heaving drawings over the wall has proven very effective for engineering and manufacturing firms. I don't think it will be much better for software firms. Engineering is guided by the laws of physics and 1000s of years of experience. Computer science and software development isn't nearly at that level yet.
    If you can get some good class diagrams and capture your most important use cases as sequence diagrams I'd say you were making a fine start.
    %

Maybe you are looking for