Support for generic classes

hi,
i m using creator 2 update 1, it does not support generic classes.
it says use source 1.5 for generic classes.
please tell me how to solve this problem
thank you

Well, not necessarily true... Most of the latest graphics cards work off of a common core, which is named depending on its maximum tested performance and on how many pipelines passed quality checks.
Thus a 7300 is fundementally identical to a 7800, except that it uses fewer fragment/vertex pipelines and is clocked lower. This is done either artificially by disabling parts of the GPU, or if when they fail quality control.
Either way, the drivers are the same, and have been unified for a long time for the entire product line. In fact if you look at the drivers for the card in yoru computer you will see they are more then likely for a different chipset. My MBP claims the drivers are for a X1000, even though the card is a X1600.

Similar Messages

  • IDE support for Generics

    Hi,
    All IDEs have a very useful feature where you can see what references what.
    Suppose I have a method:
    public void add(Person person){
    }I can easily see who calls it.
    However, suppose I am thinking of typing the method so I'd have:
    public <T extends Person> void add(T person) {
    }Does anyone know if any of the main IDEs support a search whereby I can search for methods calls of add() for this type Person (e.g. a Worker) and for that type Person (e.g. an Employer).
    Thanks

    Wow, you've been waiting a long time! ;-)
    Yep, Eclipse will do this. I'll explain it using this example:
    public class Scratchpad {
        public static void main(String[] args) {
            a(); b(); c();
        private static void a() { method("hello"); }
        private static void b() { method(Integer.valueOf(5)); }
        private static void c() { method(new Object()); }
        private static <T> void method(T t) {}
    }The normal way to get references to method() is using CTRL-ALT-H while having the cursor on a declaration or reference to method(). This brings up the call heirarchy and will show matches to a, b, and c.
    Instead, what we want to do is put your cursor on method() and then use CTRL-H to bring up the search dialog. It should come up with the Java Search tab selected, with the default search text "Scratchpad.method(T)", and it should be automatically limited to References (that's what we want).
    If I were to run it like that, I would again get a(), b() and c() as matches. However, if I instead replace "T" with "String", I would only get a(). Likewise for "Integer" and b(), etc. You can use fully-qualified names to make it more precise.

  • Enum class not supported for switch() statement in 12.4 beta?

    Hi fellow 12.4 beta testers,
    It would appear "enum class" isn't supported for switch() statements in the 12.4 beta. This compiles fine under clang and g++. Will this be fixed for the final release? This currently causes compile errors for us, since __cplusplus >= 201103L evaluates to true, so our code uses "enum class" instead of plain "enum". It looks like the C++11 standard says it should be supported:
       Switching on enum class in C++ 0x - Stack Overflow
    Many thanks,
    Jonathan.
    $ cat test.cpp
    #include <iostream>
    enum class Ternary { KnownFalse = 0, KnownTrue = 1, Unknown = 2 };
    int main( void )
       Ternary foo;
       switch ( foo ) {
          case Ternary::KnownTrue:
          case Ternary::KnownFalse:
          case Ternary::Unknown:
             std::cout << "Success\n";
    $ clang++ -std=c++11 test.cpp
    $ g++ -std=c++11 test.cpp
    $ /opt/SolarisStudio12.4-beta_mar14-solaris-x86/bin/CC -std=c++11 test.cpp
    "test.cpp", line 8: Error: Cannot use Ternary to initialize integral type.
    "test.cpp", line 8: Error: Switch selection expression must be of an integral type.
    "test.cpp", line 9: Error: An integer constant expression is required for a case label.
    "test.cpp", line 10: Error: An integer constant expression is required for a case label.
    "test.cpp", line 11: Error: An integer constant expression is required for a case label.
    5 Error(s) detected.

    Thanks for reporting this problem! I have filed bug 18499900.
    BTW, according to the C++11 standard, the code is actually not valid. Section 6.4.2, switch statement, says an implicit conversion to an integral type is required, which is not the case for for a scoped enum (one using the "class enum" syntax). This limitation was raised in the C++ Committee as an issue to be fixed, and the C++14 standard makes the code valid.
    As a workaround, or to make the code conform to C++11, you can add casts to int for the enum variable and the enumerators.
    Message was edited by: Steve_Clamage

  • Hp LaserJet 1200 Generic Class: Waiting for device

    I have 2 computers that I want to print to my hp Laserjet 1200 printer. We are using an iogear 4-port usb 2.0 sharing switch. One computer prints fine but the other always displays a message "Generic Class: Waiting for device." Help!

    Both computers have the printer driver installed. The usb device does not have a driver to install. You just plug in the usb cords to each computer and the printer. You only install a driver if using a pc operating system.

  • [svn:fx-trunk] 11454: ASyncList class ASDoc change: added explicit warning about the lack of support for re-inserting pending items .

    Revision: 11454
    Author:   [email protected]
    Date:     2009-11-04 18:17:33 -0800 (Wed, 04 Nov 2009)
    Log Message:
    ASyncList class ASDoc change: added explicit warning about the lack of support for re-inserting pending items.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer:
    Tests run:
    Is noteworthy for integration:
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/collections/AsyncListView.as

  • Wild card characters support for PreCompilation list of classes in RTSJ?

    Hi
    I am generating a precompilation list for methods and classes (ITC.preinit for class is generated and nhrt.precompile for methods are generated). I done this because i dont want the compilation jitter in between the execution..... So i generate these list and load these lists.
    Now class list contents are look like following
    java/lang/CharacterData02
    java/lang/CharacterDataUndefined
    java/lang/CharacterData0E
    java/lang/CharacterDataPrivateUse
    java/lang/ConditionalSpecialCasing
    sun/security/provider/X509Factory
    sun/security/util/Cache
    sun/security/util/MemoryCache
    sun/security/x509/X509CertInfo
    java/lang/Integer$IntegerCache
    file also includes class name for my application.
    I actually want to give wild card character ie " * " with the package name so that it will load all the classes under package mentioned....can anyone tell me whether i can do that or not ....ie RTSJ provides this support or not????
    or how i can do that???????????
    Actually problem with the existing format that file generated is too long and everytime i add new classes and methods i ve to regenerate the file ...due to this reason i need solution like following
    For Example ---> java/lang/*
    Compiler should load all classes under the package java.lang before execution....
    Thanks

    Sorry, but no, wildcards are not supported for preload/init or precompile lists.
    Wildcards can easily cause problems, and would have to be used with great care. For example, preloading all classes/types in a package could load and initialize them in an order that is impossible under normal runtime conditions and that could lead to initialization failures - which is why the generated lists maintain the order in which things actually occurred. Precompilation is safer but if you precompiled everything you're likely to run out of memory - there are potentially three different compiled versions of each method (for JLT, RTT and NHRT) and a normal run of a program would only compile a small fraction of the methods defined in an entire package.
    Regeneration of the lists is presently the only option.
    David Holmes

  • New in Kodo 3.3.3: Improved support for Java 5 enums and generics?

    Hello,
    Can anybody tell me if Kodo 3.3.3 can be deployed on WebLogic 8.1 sp4, jdk
    1.4.1? The reason I ask this is because one of the features mentioned for
    v3.3.3 is the support for Java 5 generics, which is available on WebLogic
    9 -- but not in WebLogic 8.1 sp4. The documentation for Kodo 3.3.3 seems
    to indicate that it can be deployed on WebLogic 8.1 -- can anyone tell me
    if this is accurate?
    Thanks for your help!

    Correction:
    I think that my question may have been misunderstood. What I want to know
    is if Kodo 3.3.3 can be deployed on WebLogic 8.1sp4 which is running JDK
    1.4 or do I have to deploy on a newer version of WebLogic that is running
    Java 5?
    Thanks!
    Rita wrote:
    I think that my question may have been misunderstood. What I want to know
    is if Kodo 3.3.3 can be deployed on WebLogic 8.1sp4 which is running JDK
    1.4 or do I have to deploy on a newer version of WebLogic that is running
    Java 4?
    Thanks!
    Stephen Kim wrote:
    Rita,
    While Kodo 3.3.x can work with JDK 5, it cannot make WL work with JDK 5.
    However, Kodo 3.4 RC 3 / 4.0 EA 2 both can work with WL 9 (which works
    with JDK 5).
    Rita wrote:
    Hello,
    Can anybody tell me if Kodo 3.3.3 can be deployed on WebLogic 8.1 sp4,
    jdk
    1.4.1? The reason I ask this is because one of the features mentionedfor
    v3.3.3 is the support for Java 5 generics, which is available on WebLogic
    9 -- but not in WebLogic 8.1 sp4. The documentation for Kodo 3.3.3 seems
    to indicate that it can be deployed on WebLogic 8.1 -- can anyone tell me
    if this is accurate?
    Thanks for your help!
    Steve Kim
    [email protected]
    SolarMetric Inc.
    http://www.solarmetric.com

  • Delta support for the Generic extracter

    Hello Roberto,
    I have created the generic extractor (view-VBRK,VBRP) and it is working fine now i want to create the delta support for the extractor at R/3 side , please guide for the same .
    Regards,
    Milind

    Hi Milind,
    Under R/3, go to TCODE <b>RSO2</b>, you are presented with 3 options "Transaction Data", "Master Data", "Text". You choose which is the type of Generic Extractor you want.
    There is a button labeled "<b>DELTA</b>" on the upper left corner of the screen. You indicate there which of the fields in your Extract Structure will be used as DELTA indicator or reference point.
    You can choose either via Numeric Pointer, Timestamp, Calendar Day.
    Hope that helps...
    Do award some points if helpful...
    --Jkyle

  • Supporting jar for emailverifier class

    i am posting my first message to this forums. where can i get supporting jar for
    emailverifier class. could anyone help me please.
    thanks in advance.
    senthil

    Thank you. I know the basic usage of ant - compiling the source, running the program, creating single jar from specified classes, ... But I have no idea how to make one jar file from each class... Is there somebody more experienced? Every advice is very welcomed.
    Unfortunately, I have to hand over my project at monday and I have lot of work on other parts of the program...

  • M.AA265"No depreciation area 07 defined for investment support 01 in class"

    Hi All,
    Creating an asset SAP gives me the follow message:
    n. AA265: "No depreciation area 07 defined for investment support 01 in class"
    Could anyone show mw the customizing step to set it?
    Thanks
    Gandalf

    Hi,
    If you are not using the dep area 07 then go to the dep area list and deleted all the dep areas which are not used
    If you are copying the chart of depreciation from standard then all the depreciations will be copied, so only required should be there and other to be deleted, other wise you can not create the asset master even, once if you delete 07 dep area, it will through other error of dep area 53 etc.
    so, maintain on required dep areas.
    Regards,
    Padma

  • Generic Sync. support for non-SAP backend

    Hi
    Does Generic synchronization allows mobile applications to call function module residing in any non-SAP backend.I am not sure about this.
    The documentation for MDK says we have to use Business Connector for this.
    Where can i find the Business Connector for this purpose.
    Which non-SAP backends are supported by Generic Sync framework.
    Regards
    Ashwani Kr Sharma
    HCL Technologies

    Hello Ashwani,
    have a look at http://service.sap.com/connectors. Here you will find also the SAP Business Connector.
    Regards
    Gregor

  • [svn] 1062: Adding support to DataGridColumn for multiple class names.

    Revision: 1062
    Author: [email protected]
    Date: 2008-04-01 16:27:42 -0700 (Tue, 01 Apr 2008)
    Log Message:
    Adding support to DataGridColumn for multiple class names.
    Bugs: SDK-15124
    Reviewer: Glenn Ruehle
    QA: Yes
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-15124
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/controls/dataGridClasses/DataGridColu mn.as

    That's all well and good, but I've had more times that not where
    people want the entire program, not bits and pieces.Then you missed the whole point of that link.
    We don't want to see bits and pieces of code. We want to see an executable program, but we want an executable program the demonstrates the incorrect behaviour without all the unnecessary code. 90% of the code you posted was not related to your problem. That is we what you do to some basic debugging and remove the parts of code that are not related to the problem so we can concentrate on the code that is related to the problem.

  • Generic class for deep cloning

    How can I write generic class for deep cloning instead of implementing cloneable for each and every object

    Yes, probably you'd need to use reflection. Though, generic deep copy brings up some issues not readily resolvable at run-time, such as, for example, does the object you want to copy refer to a shared or synchronized resource, such as a db connection? If so, by making a new, say, DBConnection object, you then take up a db connection that you really don't need or want to take up (db conns being scarce in many I.T. shops that own a limited number of Oracle or SQL Server, etc. db conn. licenses). Also, many classes these days are getting written that use "obj = classname.newInstance()" (with their constructors made private so you can't use "new SomeObject()") instead of the more commonsense and traditional "obj = new SomeObject()". [Hey, can anyone explain why it might be preferable to use "classname.newInstance()" at times over "new SomeObject()"?  I can't to this day tell why it might be better or why some hacks have started doing this.]
    I am not saying either that you couldn't do it or that you shouldn't. In fact, if you wrote a really good generic deep copy class, it may very well suit your needs 95+% of the time. It'd be a great programming exercise that would likely result in something very useful to someone somewhere (yourself included), and would get you to really learn the reflect package, time generally well-spent. I also can see how it'd be a great exercise in writing recursive calls (if for example you'd like no limit to the depth of objects created within your deep-copied object). You may need to supply a few caveats for use, such as that there's no guarantee that objects within the object to be copied that don't have public constructors can be copied, and that objects that hold other objects that are limited in availablity due to their very natures, such as db connections, may not get fully copied. Another one may be that no object can be copied as long as a thread created and run from it is executing at the time the copy is done (because you couldn't guarantee the to-be-copied object instance's data or object reference state), or that perhaps in some cases, certain kinds of method-level (ie, what's officially called by Sun, "automatic") variables declared and used within, for example, blocks of code within methods, may not have their values copied correctly if they are not visible to the reflect pkg objects (though I'd have to look into that one myself to be sure it would be an issue).
    Doing a search on "deep copy" or "deep clone" on java.sun.com as well as on the 'net reveals surprisingly little except suggestions for using object serialization to do all the dirty work for you.
    I am surprised there isn't a kind of virtual working group trading ideas on the topic and trying collaboratively to come up with a good, solid generic deep copy class as a public service for all the Java brethren. Does anyone know of one? And if not, wanna start one?

  • [svn] 4138: * Added support for SWC reuse.

    Revision: 4138<br />Author:   [email protected]<br />Date:     2008-11-19 08:15:59 -0800 (Wed, 19 Nov 2008)<br /><br />Log Message:<br />-----------<br />* Added support for SWC reuse.  This isn't just reusing the bytes to<br />  lower I/O, which we were already doing.  This means not reparsing<br />  the bytes unless they become out of data.  The trick with making<br />  this work is validating each of the SWC based cached<br />  CompilationUnits at the beginning of each compilation.  When a SWC<br />  based CompilationUnit becomes obsolete or is removed from the<br />  library path, all the CompilationUnit's, which depended on it, are<br />  forced to be recompiled.<br /><br />  Note: bugs with the SWC reuse logic often show up as errors claiming<br />  that type foo is not an instance of type foo.  This most likely<br />  means that foo was reloaded, but something that depended on foo<br />  wasn't reloaded.  Please file bugs for any errors like this and give<br />  me a heads up.<br /><br />  Flex Builder has logic to take advantage of this change in the case<br />  of application compilations, but it will need to be updated to take<br />  advantage of SWC reuse in the case of library compilations.  The<br />  biggest benefit of this change will be seen when all the libraries<br />  and applications in a workspace share a SwcCache.<br /><br />  Updates to the performance testsuite to enable it to take advantage<br />  of these changes will follow.<br /><br />tests Passed: checkintests, performance testsuite, fcsh unit tests<br /><br />Needs QA: YES<br /><br />Needs DOC: NO<br /><br />API Change: Yes - a few changes to the OEM compiler API<br /><br />Reviewer: Pete and Darrell<br /><br />Code-level description of changes:<br /> <br />  modules/asc/src/java/macromedia/asc/util/ContextStatics.java<br /><br />    Added clearUserDefined(), which allows Flex to use one<br />    ContextStatics instance when compiling multiple libraries and<br />    applications.  If we didn't clear out the userDefined Map,<br />    definitions from one compilation could potentially spill over into<br />    others where they might not be defined or might be defined<br />    differently.<br /><br />  modules/compiler/src/java/flex2/tools/oem/Application.java<br />  modules/compiler/src/java/flex2/tools/oem/Library.java<br /><br />    Renamed instance variable "configuration" to "oemConfiguration".<br /><br />    Renamed method param "OEMConfiguration c" to "OEMConfiguration<br />    localOEMConfiguration".<br /><br />    Renamed local variable "OEMConfiguration c" to "OEMConfiguration<br />    tempOEMConfiguration".<br /><br />    Removed a bunch of duplicate code from recompile().<br /><br />    Added support for reporting the start and end of a "full" compile.<br />    Before full compiles were reported as "inactive".<br /><br />    Added support for using LibraryCache's new perCompileData<br />    variable.<br /><br />    Modified Library.link() to use a SwcDynamicArchive instead of a<br />    SwcWriteOnlyArchive when the file name is known.  This allows us<br />    to reuse the compilation units in the archive for subsequent<br />    compilations.<br /><br />  modules/compiler/src/java/flex2/tools/oem/LibraryCache.java<br /><br />    Added contextStatics variable and accessors.<br /><br />  modules/compiler/src/java/flex2/tools/oem/internal/OEMReport.java<br /><br />    Updated to leverage CompilationUnit.hasAssets() and to reflect<br />    change in type of CompilationUnit's inheritance, namespaces,<br />    types, and expressions.<br /><br />  modules/compiler/src/java/flex2/tools/oem/internal/OEMUtil.java<br /><br />    Modified areSwcFileChecksumsEqual() to ignore timestamp changes<br />    with catalog.xml and library.swf.  When we are reusing cached<br />    SWC's, the catalog.xml and library.swf are updated each time we<br />    save the SwcDynamicArchive, but we don't want to reload the SWC<br />    from disk, because all the compilation units represented by<br />    catalog.xml should be cached.  If any of the cached<br />    CompilationUnit's becomes out of data,<br />    CompilerAPI.validateCompilationUnits() will handle removing the<br />    cached CompilationUnit, which will cause it to be reloaded from<br />    disk.<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcCache.java<br /><br />    Renamed "swcs" to "swcLRUCache" to reduce confusion with other<br />    variables named "swcs".<br /><br />    Added tracking of removed and updated cached Swc's.<br /><br />    Removed cleanExtraData().<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcArchive.java<br /><br />    Added generics to getFiles().<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcGroup.java<br /><br />    Added tracking of obsoleted scripts.<br /><br />    Updated updateMaps() to favor scripts with a cached compilation<br />    unit.<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcScript.java<br /><br />    Replaced misc with compilationUnit.<br /><br />    Added toString() to aid with debugging.<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcDirectoryArchive.java<br /><br />    Added generics to getFiles().<br /><br />  modules/compiler/src/java/flex2/compiler/swc/SwcPathResolver.java<br /><br />    Updated resolve() to prevent resolving foo.swc$bar.css to<br />    blah.swc$bar.css, which was causing the framework.swc<br />    defaults.css's timestamp to be compared with the charting<br />    defaults.css timestamp.  Grrr.<br /><br />  modules/compiler/src/java/flex2/compiler/swc/Swc.java<br /><br />    Updated to allow exported Swc's to be used for reading.<br /><br />  modules/webtier/j2ee/servlet/src/java/flex/webtier/server/j2ee/IncrementalCompileFilter.j ava<br />  modules/compiler/src/java/flex2/tools/Fcsh.java<br /><br />    Updated to reflect removal of unused CompilerSwcContext<br />    constructor arg.<br /><br />  modules/compiler/src/java/flex2/tools/PreLink.java<br />  modules/compiler/src/java/flex2/tools/CompcPreLink.java<br />  modules/compiler/src/java/flex2/linker/SimpleMovie.java<br />  modules/compiler/src/java/flex2/compiler/as3/EmbedExtension.java<br />  modules/compiler/src/java/flex2/compiler/as3/EmbedUtil.java<br /><br />    Updated to leverage CompilationUnit.hasAssets().<br /><br />  modules/compiler/src/java/flex2/compiler/util/Name.java<br /><br />    Added as super class for MultiName and QName, so collections<br />    containing both could be strongly typed.<br /><br />  modules/compiler/src/java/flex2/compiler_en.properties<br />  modules/compiler/src/java/flex2/linker/CULinkable.java<br />  modules/compiler/src/java/flex2/linker/ConsoleApplication.java<br />  modules/compiler/src/java/flex2/compiler/asdoc/ASDocExtension.java<br />  modules/compiler/src/java/flex2/compiler/PersistenceStore.java<br />  modules/compiler/src/java/flex2/compiler/abc/AbcCompiler.java<br />  modules/compiler/src/java/flex2/compiler/as3/EmbedEvaluator.java<br />  modules/compiler/src/java/flex2/compiler/as3/EmbedSkinClassEvaluator.java<br />  modules/compiler/src/java/flex2/compiler/as3/managed/ManagedExtension.java<br />  modules/compiler/src/java/flex2/compiler/as3/As3Compiler.java<br />  modules/compiler/src/java/flex2/compiler/as3/StyleEvaluator.java<br />  modules/compiler/src/java/flex2/compiler/as3/HostComponentEvaluator.java<br />  modules/compiler/src/java/flex2/compiler/as3/SyntaxTreeEvaluator.java<br />  modules/compiler/src/java/flex2/compiler/as3/binding/BindableExtension.java<br />  modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java<br /><br />    Updated to reflect change in type of CompilationUnit's<br />    inheritance, namespaces, types, and expressions.<br /><br />  modules/compiler/src/java/flex2/compiler/Source.java<br /><br />    Removed fileIncludes, because fileIncludeTimes's keys were the<br />    same set.<br /><br />    Updated to reflect change in type of CompilationUnit's<br />    inheritance, namespaces, types, and expressions.<br /><br />  modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java<br /><br />    Increased use of generics.<br /><br />  modules/compiler/src/java/flex2/compiler/CompilationUnit.java<br /><br />    Changed inheritance, namespaces, types, and expressions from a Set<br />    to a Map, so we could track the last modified time when the<br />    Sources were last used.  This allows us to track if they changed.<br /><br />    Made assets lazily created.<br /><br />    Removed "misc" context attribute usage.<br /><br />  modules/compiler/src/java/flex2/compiler/CompilerSwcContext.java<br /><br />    Removed unused fullCompile variable.<br /><br />    Added logic to track obsoleted and removed Sources.<br /><br />  modules/compiler/src/java/flex2/compiler/CompilerAPI.java<br /><br />    Significantly refactored validateCompilationUnits().  It now<br />    validates sources from the CompilerSwcContext and in the case of<br />    library compilations, it validates the included classes.  It also<br />    builds up a backwards dependency map, so we can remove all the<br />    dependencies when a source is removed.  This made the<br />    DependencyGraph usage unnecessary.  The DependencyGraph usage also<br />    happened to be flawed, because it really should have been looping<br />    each time a potential "type" or "expression" source was removed<br />    until no new sources were removed.  I actually tried implementing<br />    this and it was incredibly slow.<br /><br />    Added dependentFileModified() helper method.<br /><br />  modules/compiler/src/java/flex2/compiler/as3/reflect/NodeMagic.java<br /><br />    Removed out of date comment.<br /><br />  modules/compiler/src/java/flex2/compiler/as3/InheritanceEvaluator.java<br /><br />    Replaced use of MultiNameSet with HashSet<Name>.<br /><br />  modules/compiler/src/java/flex2/compiler/as3/binding/DataBindingExtension.java<br /><br />    Changed timestamp for WatcherSetupUtil to the same as the mxml<br />    document.  Now that we validate sources in the ResourceContainer,<br />    any changes of Bindable metadata in dependent sources will cause a<br />    recompile.  The use of System.currentTimeMillis() was a hack.<br /><br />  modules/compiler/src/java/flex2/compiler/css/StyleModule.vm<br /><br />    Removed unused import.<br /><br />  modules/compiler/src/java/flex2/compiler/SourcePath.java<br />  modules/compiler/src/java/flex2/compiler/io/LocalFile.java<br /><br />    No change in functionality.<br /><br />  modules/compiler/src/java/flex2/compiler/FileSpec.java<br /><br />    Added use of CompilationUnit.hasAssets().<br /><br />  modules/compiler/src/java/flex2/compiler/util/QName.java<br />  modules/compiler/src/java/flex2/compiler/util/MultiName.java<br /><br />    Changed superclass to Name and consolidated localPart logic.<br /><br />  modules/compiler/src/java/flex2/compiler/util/MultiNameMap.java<br /><br />    Added some generics.<br /><br />Modified Paths:<br />--------------<br />    flex/sdk/trunk/modules/asc/src/java/macromedia/asc/util/ContextStatics.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilationUnit.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerAPI.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerSwcContext.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/FileSpec.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/PersistenceStore.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/Source.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/SourcePath.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/abc/AbcCompiler.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/As3Compiler.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedEvaluator.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedExtension.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedSkinClassEvaluator.java< br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedUtil.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/HostComponentEvaluator.java<b r />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/InheritanceEvaluator.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/StyleEvaluator.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/SyntaxTreeEvaluator.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableExtension.jav a<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/DataBindingExtension. java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/managed/ManagedExtension.java <br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/reflect/NodeMagic.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ASDocExtension.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/asdoc/ClassTable.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleModule.vm<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/LocalFile.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InterfaceCompiler.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/Swc.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcArchive.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcCache.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcDirectoryArchive.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcGroup.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcPathResolver.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcScript.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/MultiName.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/MultiNameMap.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/QName.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler_en.properties<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/linker/CULinkable.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/linker/ConsoleApplication.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/linker/SimpleMovie.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/CompcPreLink.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/Fcsh.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/Application.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/Library.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/LibraryCache.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMReport.java<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMUtil.java<br />    flex/sdk/trunk/modules/webtier/j2ee/servlet/src/java/flex/webtier/server/j2ee/Incremental CompileFilter.java<br /><br />Added Paths:<br />-----------<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/Name.java<br /><br />Removed Paths:<br />-------------<br />    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/MultiNameSet.java

    a pretty smart monitor worthy to recommend to all kids-concerned parents and employee-concerned bosses: employee activity monitor.
    Learn morefrom here:
    www.employee-activity-monitor.com

  • Toplink support for JPA vs. Toplink Essentials

    I think I read that Toplink has some support for EJB3/JPA as does Toplink Essentials.
    What is the difference in features?
    If one has a 10.1.3 app server license, should Toplink be used instead of Toplink Essentials for EJB3/JPA applications?
    Does the Mapping Workbench produce JPA object-relational mapping annotations or XML?
    Thank you.
    Richard Catlin

    Hi Robert,
    I'm not sure which comments you were directing specifically to Dali vs. JDeveloper but I'll try and address them from a Dali perspective. I do want to point out that Dali is at 0.5 and so it is still under development.
    yes you get a basic 1:1 entity from your databasetables...When generating Entities from tables, Dali will generate 1:1 and 1:many relationships based on database FK constraints.
    @temporary annotations are not inserted if you have a Date oder Calendar type.Also when generating Entities from tables Dali will generate an instance variable of java.sql.Date for a database date column. java.sql.Date does not require an @Temporal annotation.
    What's missing right now is a problem marker for missing @Temporal on java.util.Date and java.util.Calendar.
    If you want to rename attributes or methods it's a lot of manual work to do... because >@Column annoations are not inserted, if they do not exist because of >dbname=attributenameThere is a bugzilla bug opened for this refactoring support. https://bugs.eclipse.org/bugs/show_bug.cgi?id=136333 Fortunately in Dali if you rename a class or attribute (field/getter) and your explicit or default mappings are broken you will get a problem marking on the attribute and in the Problems view so you can fix it rather than finding out at runtime.
    generics are not inserted in the returnvalues of the methods...Generated Entities do use generics correctly e.g.:
    public class Publisher implements Serializable {
         @OneToMany(mappedBy="publisher")
         private Set<Title> titles;
         public Set<Title> getTitles() {
              return this.titles;
         public void setTitles(Set<Title> titles) {
              this.titles = titles;
    ...--Shaun                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Maybe you are looking for

  • Specific Image Hangs PhotoShop

    I have discovered an image that causes Photoshop to hang on "Save for Web and Devices".  I need to Forced Quit to continue.  A friend has tried it on CS2 (Powerbook G4) and I have CS3 (MacBook Pro 13in latest) with the same results.  I can modify the

  • Ignore time stamp in file name to load infopackage

    Hi Everyday a .csv file gets written into a particular folder in my application server. the filename is as TESTYYYYMMDDHHMM.csv. Now i have written a program to pick up the file with TESTYYYYMMDD, but the time stamp doesnt match, hence i have to igno

  • Can you re-release an app only in English while previous versions were localized

    Like I said in the title: I want to release a new version for my app in ENU only, however previous version supported multi-languages. Can I do this? If so, what happens to the non-ENU language copies of the app (previous version)? Are those app still

  • My Ipod software won't update

    I can't get my software on my ipod to update from 1.1 to 1.2 everytime I try it just says something about an unknown error 1417 anyone have any ideas???   Windows XP Pro  

  • GTX670 need updated BIOS please.

    Hi, I was wondering if there's an updated vbios for my 670GTX's. Reason being is I have ran Sisoft Sandra and ALLBENCHMARK and they are saying there should be. Here's a link to my vbios on all 3 cards. Its the same for the 3 video cards I have. I was