Variable Scope at package or interface level

Hi,
Can we set the ODI Project variable scope to package or interface level
because in my project im using a last rundate refresh variable this variable value will be changed at the time of execution of each package.
Thanxs
Madhavi

you can create it as "Not Persistent" and then its value exist per ODI session.
In this way, several sessions can keep independent value to the same variable.

Similar Messages

  • Variable scope in package

    I have some procedures in a package that need almost the same type of variables. Now, lets say I put them in the package spec in the private variable declaration part so that all the procedures use the same variables instead of declaring them inside all procedures. Now, if someone is executing those procs simultaneously will Oracle Oracle create a separate instance of those variables or use the same copy of the variables for all the simultaneously executing procedures?
    Also, is it a good practise to put these variables in the package body section so that they become public?

    another question!
    is it advisable to put some kind of driver proc in the package such that its job is just to invoke other procs of the package when called like:
    create or replace package body mypack is
    procedure proc proc_main(params) is
    begin
    proc1(params); --invoke other procs
    proc2(params);
    procn(params);
    end ;--end of proc
    --package initialization section
    begin
    proc_main(params);
    end; --end of package                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Javascript discussion: Variable scopes and functions

    Hi,
    I'm wondering how people proceed regarding variable scope, and calling
    functions and things. For instance, it's finally sunk in that almost
    always a variable should be declared with var to keep it local.
    But along similar lines, how should one deal with functions? That is,
    should every function be completely self contained -- i.e. must any
    variables outside the scope of the function be passed to the function,
    and the function may not alter any variables but those that are local to
    it? Or is that not necessary to be so strict?
    Functions also seem to be limited in that they can only return a single
    variable. But what if I want to create a function that alters a bunch of
    variables?
    So I guess that's two questions:
    (1) Should all functions be self-contained?
    (2) What if the function needs to return a whole bunch of variables?
    Thanks,
    Ariel

    Ariel:
    (Incidentally, I couldn't find any way of  marking answers correct when I visited the web forums a few days ago, so I gave up.)
    It's there...as long as you're logged in at least, and are the poster of the thread.
    What I want is to write code that I can easily come back to a few months later
    and make changes/add features -- so it's only me that sees the code, but
    after long intervals it can almost be as though someone else has written
    it! So I was wondering if I would be doing myself a favour by being more
    strict about make functions independent etc. Also, I was noticing that
    in the sample scripts that accompany InDesign (written by Olav Kvern?)
    the functions seem always to require all variables to be passed to it.
    Where it is not impractical to do so, you should make functions independent and reusable. But there are plenty of cases where it is impractical, or at least very annoying to do so.
    The sample scripts for InDesign are written to be in parallel between three different languages, and have a certain lowest-common-denominator effect. They also make use of some practices I would consider Not Very Good. I would not recommend them as an example for how to learn to write a large Javascript project.
    I'm not 100% sure what you mean by persistent session. Most of my
    scripts are run once and then quit. However, some do create a modeless
    dialog (ie where you can interface with the UI while running it), which
    is the only time I need to use #targetengine.
    Any script that specifies a #targetengine other than "main" is in a persistent session. It means that variables (and functions) will persist from script invokation to invokation. If you have two scripts that run in #targetengine session, for instance, because of their user interfaces, they can have conficting global variables. (Some people will suggest you should give each script its own #targetengine. I am not convinced this is a good idea, but my reasons against it are mostly speculation about performance and memory issues, which are things I will later tell you to not worry about.)
    But I think you've answered one of my questions when you say that the
    thing to avoid is the "v1" scope. Although I don't really see what the
    problem is in the context of InDesign scripting (unless someone else is
    going to using your script as function in one of theirs). Probably in
    Web design it's more of an issue, because a web page could be running
    several scripts at the same time?
    It's more of an issue in web browsers, certainly (which I have ~no experience writing complex Javascript for, by the way), but it matters in ID, too. See above. It also complicates code reuse across projects.
    Regarding functions altering variables: for example, I have a catalog
    script. myMasterPage is a variable that keeps track of which masterpage
    is being used. A function addPage() will add a page, but will need to
    update myMasterPage because many other functions in the script refer to
    that. However, addPage() also needs to update the total page count
    variable, the database-line-number-index-variable and several others,
    which are all used in most other functions. It seems laborious and
    unnecessary to pass them all to each function, then have the function
    alter them and return an array that would then need to be deciphered and
    applied back to the main variables. So in such a case I let the function
    alter these "global" (though not v1) variables. You're saying that's okay.
    Yes, that is OK. It's not a good idea to call that scope "global," though, since you'll promote confusion. You could call it...outer function scope, maybe? Not sure; that assumes addPage() is nested within some other function whose scope is containing myMasterPage.
    It is definitely true that you should not individually pass them to the function and return them as an array and reassign them to the outer function's variables.
    I think it is OK for addPage() to change them, yes.
    Another approach would be something like:
    (function() {
      var MPstate = {
        totalPages: 0,
        dbline: -1
      function addPage(state) {
        state.totalPages++;
        state.dbline=0;
        return state;
      MPstate = addPage(MPstate);
    I don't think this is a particularly good approach, though. It is clunky and also doesn't permit an easy way for addPage() to return success or failure.
    Of course it could instead do something like:
        return { success: true, state: state };
      var returnVal = addPage(MPstate);
      if (returnVal.success) { MPstate = returnVal.state; }
    but that's not very comforting either. Letting addPage() access it's parent functions variables works much much better, as you surmised.
    However, the down-side is that intuitively I feel this makes the script
    more "messy" -- less legible and professional. (On the other hand, I
    recall reading that passing a lot of variables to functions comes with a
    performance penalty.)
    I think that as long as you sufficiently clearly comment your code it is fine.
    Remember this sort of thing is part-and-parcel for a language that has classes and method functions inside those classes (e.g. Java, Python, ActionScript3, C++, etc.). It's totally reasonable for a class to define a bunch of variables that are scoped to that class and then implement a bunch of methods to modify those class variables. You should not sweat it.
    Passing lots of variables to functions does not incur any meaningful performance penalty at the level you should be worrying about. Premature optimization is almost always a bad idea. On the other hand, you should avoid doing so for a different reason -- it is hard to read and confusing to remember when the number of arguments to something is more than three or so. For instance, compare:
    addPage("iv", 3, "The rain in spain", 4, loremIpsumText);
    addPage({ name: "iv", insertAfter: 3, headingText: "The rain in spain",
      numberColumns: 4, bodyText: loremIpsumText});
    The latter is more verbose, but immensely more readable. And the order of parameters no longer matters.
    You should, in general, use Objects in this way when the number of parameters exceeds about three.
    I knew a function could return an array. I'll have to read up on it
    returing an object. (I mean, I guess I intuitively knew that too -- I'm
    sure I've had functions return textFrames or what-have-you),
    Remember that in Javascript, when we say Object we mean something like an associative array or dictionary in other languages. An arbitrary set of name/value pairs. This is confusing because it also means other kinds of objects, like DOM objects (textFrames, etc.), which are technically Javascript Objects too, because everything inherits from Object.prototype. But...that's not what I mean.
    So yes, read up on Objects. They are incredibly handy.

  • Variable refreshing in package header

    Hello Experts,
    Through a function in my package header I fill up a global variable. The function gets the value out of a table in my database:
    PV_FILENAME PARAMETERS.VALUE%TYPE DL$PARAMETERS.VALUE_BY_NAME('FILE_NAME'); This works fine, however when I change the value in the table and commit the changes the problem begins.
    When I execute the following statement to check if the value changed:
    select DL$PARAMETERS.VALUE_BY_NAME('FILE_NAME') from dual;It shows me the new value...
    But the variable in the package still contains the old value. When I restart sql developer the variable adjusts.
    Does anyone know what I can do? It seems like the package is caching the value or something. Or is it obligatory to put global variables in the body?
    greets
    Edited by: iadgroe on May 21, 2012 6:37 AM

    Hello Arun,
    I can check this because the return value I use in the function is the name of an xml file (e.g. 'xmlfile_1.xml'):
    SELECT .....
    FROM XMLTABLE('/employees/employee' PASSING XMLTYPE(BFILENAME(PV_DIRECTORY, -->PV_FILENAME<--), NLS_CHARSET_ID('AL32UTF16'))
    COLUMNS USERNAME VARCHAR2(20) PATH './name/userName' , TIMEREG XMLTYPE PATH './timeRegistration/days' ) H,
        XMLTABLE('days/day' PASSING H.TIMEREG COLUMNS TIMESHEET_DATUM In the above code I use the name to retrieve the xml file. I insert the data in the xml file into one of my own tables.
    When I change the value of the xml-name(e.g. 'xmlfile_2.xml') in my table that the function returns, the variable should reference another xml-file. However when I execute the procedure in my package it still insert data from the previous xml(xmlfile_1.xml) file into my table.
    I this clear enough? :-)
    Thanks a lot!

  • Best way to deal with hard coded variables in a package

    There is a plsql package that reads a line from a file, parses the data, does a ton of sql operation with it (select update, inserts, calculations) and then writes the output to an output file.
    The file names and the firectories are retieved from a database table.
    Example:
    select location,file_name into loc_in,file_in from temp_tbl;
    p_File_handle := utl_file.fopen (loc_in, file_in, 'W');
    My co worker is suggesting that getting the variable values from the table is not a good practice. He suggests that the values should be hard-coded in the program. Now you might ask what would happen if the file name or directory changes. His suggestion is to have a build file and do a token substitution of those hard coded values in the program and then load in to the DB. In short the process will involve the following steps:
    -Get the package from the repostory.
    -Change the file name and directory in the token file.
    -Run the build process that will replace the values in the package .
    -Load the new file (with the updated values) in to the DB.
    Example:
    This way the program will be initially coded like this:
    p_File_handle := utl_file.fopen ('${loc_in}', '${file_in}', 'W');
    After the build file runs, it will replace the values as
    p_File_handle := utl_file.fopen ('C:/test', 'testfile.dat', 'W');
    Once the file has changed with the new updated values, compile that into the database.
    Ideas/comments?

    Re: Best way to deal with hard coded variables in a package: why have you reposted using a new profile?
    Neither post provides enough clear information on what the actual requirement is. We need more data in order to comment on your idea, your co-worker's, or to suggest alternatives.
    My co worker is suggesting that getting the variable
    values from the table is not a good practice.His reasons for this are...?
    "variable values": Why do they vary? How often do they change?
    The file names and the directories are retrieved from
    a database table.How do the values get into the table? What is the volume of the data?
    Oracle version? Operating system?

  • Bind variable inside a package

    Can we declare a bind variable inside a package specification?
    CREATE OR REPLACE PACKAGE GET_EMPLOYEEDETAILS
    IS
    PROCEDURE GET_FIRSTNAME(E_ID IN EMPLOYEES.EMPLOYEE_ID%TYPE, F_NAME OUT EMPLOYEES.FIRST_NAME%TYPE);
    VARIABLE O VARCHAR2(20);
    END GET_EMPLOYEEDETAILS ;
    CREATE OR REPLACE PACKAGE BODY GET_EMPLOYEEDETAILS
    IS
    PROCEDURE GET_FIRSTNAME(E_ID IN EMPLOYEES.EMPLOYEE_ID%TYPE, F_NAME OUT EMPLOYEES.FIRST_NAME%TYPE)
    IS
    BEGIN
    SELECT FIRST_NAME INTO F_NAME FROM EMPLOYEES WHERE EMPLOYEE_ID = E_ID;
    DBMS_OUTPUT.PUT_LINE(F_NAME);
    END;
    END GET_EMPLOYEEDETAILS;
    Output:
    ERROR at line 4: PLS-00103: Encountered the symbol "VARCHAR2" when expecting one of the following:
      := . ( @ % ; not null range default character
    The symbol ":=" was substituted for "VARCHAR2" to continue.
    2. IS
    3. PROCEDURE GET_FIRSTNAME(E_ID IN EMPLOYEES.EMPLOYEE_ID%TYPE, F_NAME OUT EMPLOYEES.FIRST_NAME%TYPE);
    4. VARIABLE O VARCHAR2(20);
    5. END GET_EMPLOYEEDETAILS ;
    6. /
    or is there any alternative for bind variables inside an package
    Thanks in advance
    Message was edited by: 1009739

    The "VARIABLE O VARCHAR2(20);" syntax is the way SQLPlus declared bind variables - it is specific to the client. Because PL/SQL packages and procedures are server code that continue past sessions, its only access to the client environment is what the client gives it - it can't go and create a bind variable in the client.
    PL/SQL procedures, functions and packages run from lots of environments, so they cannot access bind variables inside their body - you have to pass any external variables as parameters.
    Anonymous PL/SQL blocks can access bind variables.
    You can declare package public global variables - just leave out that "VARIABLE". E.g.
    CREATE OR REPLACE PACKAGE GET_EMPLOYEEDETAILS
    IS
    PROCEDURE GET_FIRSTNAME(E_ID IN EMP.EMPNO%TYPE, F_NAME OUT EMP.ENAME%TYPE);
    O VARCHAR2(20);
    END GET_EMPLOYEEDETAILS ;
    For local variables in your procedure, just put them between the IS and BEGIN. Using them in SQL inside the PL/SQL automatically uses them as a bind variable.
    create or replace PROCEDURE GET_FIRSTNAME(E_ID IN EMP.EMPNO%TYPE, F_NAME OUT EMP.ENAME%TYPE)
    IS
      O VARCHAR2(20);
      O2 VARCHAR2(21);
    BEGIN
      O := 'FR%';
    SELECT ENAME INTO F_NAME FROM EMP WHERE EMPNO = E_ID and ENAME like O;
    O2 := F_NAME || '2';
    DBMS_OUTPUT.PUT_LINE(F_NAME);
    END;
    O is bound in the query.
    To access bind variables from anonymous PL/SQL, first declare them in the calling environment. In SQL Plus that's
    VARIABLE O VARCHAR2(20);
    In Pro*C it's
    EXEC SQL BEGIN DECLARE SECTION;
      char[21] O
    EXEC SQL END DECLARE SECTION;
    Then reference it in anonymous PL/SQL with a colon as prefix:
    BEGIN
    SELECT FIRST_NAME INTO :O FROM EMPLOYEES WHERE EMPLOYEE_ID = E_ID;
    END;
    This only works for anonymous blocks (starting with BEGIN or DECLARE). As I said, PL/SQL procedures, functions and packages cannot see bind variables from the calling environment

  • [svn:fx-trunk] 15350: * More package and class level javadoc.

    Revision: 15350
    Revision: 15350
    Author:   [email protected]
    Date:     2010-04-12 13:22:21 -0700 (Mon, 12 Apr 2010)
    Log Message:
    More package and class level javadoc.  A small amount of commented
      out and dead code removal, too.
    QE notes:
    Doc notes:
    Bugs: N/A
    Reviewer: Corey
    Tests run: checkintests
    Is noteworthy for integration: No
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/AbstractSyntaxTreeUtil.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/As3Compiler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/As3Configuration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/BytecodeEmitter.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/CodeFragmentLogAdapter.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/CodeFragmentsInputBuffer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedUtil.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/HostComponentExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/InheritanceEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/MetaDataEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/MetaDataParser.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/OffsetInputBuffer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/SignatureExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/SkinPartEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/SkinPartExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/StyleEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/StyleExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/SyntaxTreeEvaluator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/ArrayElementWatcher.j ava
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableExtension.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableFirstPassEval uator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/BindableSecondPassEva luator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/ChangeEvent.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/ClassInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/DataBindingExtension. java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/DataBindingFirstPassE valuator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/DataBindingInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/EvaluationWatcher.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/FunctionReturnWatcher .java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/Info.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/InterfaceInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/PrefixedPrettyPrinter .java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/PropertyWatcher.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/RepeaterComponentWatc her.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/RepeaterItemWatcher.j ava
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/TypeAnalyzer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/Watcher.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/binding/XMLWatcher.java
    Added Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/package.html

    Gordon, it looks like its been a while since you made this post.  Not sure how valid it is now...   I am particularly interested in the LigatureLevel.NONE value.  It seems that it is no longer supported.
    How do I turn of ligatures in the font rendering?
    My flex project involves trying to match the font rendering of Apache's Batik rendering of SVG and ligatures have been turned off in that codebase.  Is there any way (even roundabout) to turn ligatures off in flash?
    Thanks,
    Om

  • [svn:fx-trunk] 15846: * Package and class level javadoc for the swfutils module.

    Revision: 15846
    Revision: 15846
    Author:   [email protected]
    Date:     2010-04-30 06:15:19 -0700 (Fri, 30 Apr 2010)
    Log Message:
    Package and class level javadoc for the swfutils module.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/BatikFontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/DefineFont3Face.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FSType.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontDescription.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontFace.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/FontSet.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/JREFontManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/LocalFont.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/AbstractGraphics2D.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/GraphicContext.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/SpriteGraphics2D.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/BitmapImage.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/ImageUtil.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/JPEGImage.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/LosslessImage.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/ILocalizedText.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/ILocalizer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/LocalizationManager.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/ResourceBundleLocalizer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/XLRLocalizer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionConstants.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionFactory.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/ActionHandler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/CompressionLevel.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/DebugHandler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Dictionary.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Frame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Header.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Movie.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/MovieDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/MovieEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/MovieMetaData.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/RandomAccessBuffer.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfConstants.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfFormatException.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/SwfUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/Tag.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagDecoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagEncoder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagEncoderReporter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagHandler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagValues.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Branch.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/ConstantPool.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/DefineFunction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GetURL.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GetURL2.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GotoFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GotoFrame2.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/GotoLabel.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Label.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Push.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/SetTarget.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/StoreRegister.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/StrictMode.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Try.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/Unknown.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/WaitForFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/With.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/DefineBitsBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/DefineBitsLosslessBuilder .java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/DefineShapeBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/EditTextBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/FontBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/ImageShapeBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/TagBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/TextBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/FillStyleBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/LineStyleBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/MatrixBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/PathIteratorWrapper.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/Point.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/RectBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/ShapeIterator.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/ShapeWithStyleBuilder.ja va
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/ZoneRecordBuilder.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/DebugModule.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/DebugTable.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/LineRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/RegisterRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/CSMTextSettings.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DebugID.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBinaryData.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBits.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBitsJPEG3.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineBitsLossless.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineButton.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineButtonCxform.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineButtonSound.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineEditText.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont1.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont2.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont3.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFont4.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFontAlignZones.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineFontInfo.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineMorphShape.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineScalingGrid.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineSceneAndFrameLabelData.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineShape.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineSound.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineSprite.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineTag.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineText.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DefineVideoStream.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DoABC.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DoAction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/DoInitAction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/EnableDebugger.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ExportAssets.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/FileAttributes.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/FrameLabel.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/GenericTag.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ImportAssets.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/Metadata.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/PlaceObject.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ProductInfo.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/RemoveObject.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ScriptLimits.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SetBackgroundColor.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SetTabIndex.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ShowFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SoundStreamHead.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/StartSound.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/SymbolClass.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/VideoFrame.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/ZoneRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/AbcPrinter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/Disassembler.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SizeReport.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SwfxParser.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/SwfxPrinter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ActionList.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ArrayLists.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/BevelFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/BlurFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ButtonCondAction.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ButtonRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/CXForm.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/CXFormWithAlpha.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ClipActionRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ClipActions.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ColorMatrixFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ConvolutionFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/CurvedEdgeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/DropShadowFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/EdgeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/FillStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Filter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/FlashUUID.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/FocalGradient.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GlowFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GlyphEntry.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GradRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Gradient.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GradientBevelFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/GradientGlowFilter.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ImportRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/KerningRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/LineStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MD5.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Matrix.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MorphFillStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MorphGradRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/MorphLineStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Rect.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/Shape.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ShapeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/ShapeWithStyle.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/SoundInfo.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/StraightEdgeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/StyleChangeRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/TagList.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/TextRecord.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/AbstractCache.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/Base64.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/ExceptionUtil.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/FileResolver.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/FileUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/IntMap.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/IntMapLRUCache.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/LRUCache.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/ResourceResolver.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/StringJoiner.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/StringUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/SwfImageUtils.java
        flex/sdk/trunk/modules/swfutils/src/java/flash/util/Trace.java
    Added Paths:
        flex/sdk/trunk/modules/swfutils/src/java/flash/fonts/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/g2d/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/graphics/images/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/localization/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/actions/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/tags/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/builder/types/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/debug/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tags/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/tools/package.html
        flex/sdk/trunk/modules/swfutils/src/java/flash/swf/types/package.html

    Thank you very much!
    I cant believe this little comment has been so helpful!
    But yes it is:
    I explain, despite my efforts to find, googled it, forums, faqs, etc...
    no where it mentionned the manifest.fm file is... INSIDE the .jar!
    Your comment "a zip" made me attempt to open it with winrar, and I found a manifest.fm file inside!
    So far I was editing the one at the "source" of my project and rebuilding it with netbeans.
    I am going to try that now.
    Actually.... :( no its mentionning my main class!
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 10.0-b19 (Sun Microsystems Inc.)
    Main-class: courseworkjava3d.Simple3D
    Class-Path:
    X-COMMENT: Main-Class will be added automatically by buildWell I have no problems uploading you the .jar, it is for a coursework it is not a private project or whatever:
    http://www.uploading.com/files/CM2LKWYU/BetaCourseworkJava3d_Final.jar.html
    Oh and I felt on your comment "dont ask us" as if I was suppose to know... i'm a beginner, I did not know that! And I tried to give you so many infos so you dont lose your time if you want to help, especially as after my own research I found many, many results for this "main class" and I tried a few solutions!
    Edited by: CupofTea on Apr 13, 2008 3:28 AM

  • [svn:fx-trunk] 15789: * Package and class level javadoc for the flex2. linker, flex2.tools,

    Revision: 15789
    Revision: 15789
    Author:   [email protected]
    Date:     2010-04-28 09:43:59 -0700 (Wed, 28 Apr 2010)
    Log Message:
    Package and class level javadoc for the flex2.linker, flex2.tools,
      flex2.tools.flexbuilder, flex2.tools.oem, flex2.tools.oem.internal
      packages.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/CULinkable.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/ConsoleApplication.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/FlexMovie.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/Linkable.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/LinkerAPI.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/LinkerConfiguration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/LinkerException.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/PostLink.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/SimpleMovie.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/Optimizer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/flexbuilder/BuilderApplication.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/flexbuilder/BuilderConfiguration.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/flexbuilder/BuilderLibrary.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/ApplicationInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/Component.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/LibraryInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/PathResolver.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/Script.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/Toolkit.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/ApplicationCompiler.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/ApplicationCompilerConf iguration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/ApplicationData.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/BuilderLogger.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/ConfigurationConstants. java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/EmbedUtil.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/GenericMessage.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/LibraryCompiler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/LibraryCompilerConfigur ation.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/LibraryData.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/LinkerConfiguration.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMConfiguration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMConsole.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMLogAdapter.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMPathResolver.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMProgressMeter.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMReport.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/OEMUtil.java
    Added Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/flexbuilder/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/internal/package.html

  • [svn:fx-trunk] 15810: * Package and class level javadoc for the antTasks module and some

    Revision: 15810
    Revision: 15810
    Author:   [email protected]
    Date:     2010-04-29 02:47:22 -0700 (Thu, 29 Apr 2010)
    Log Message:
    Package and class level javadoc for the antTasks module and some
      other stragglers.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/antTasks/src/flex/ant/AsDocTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/AscTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/CompcTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/FlexTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/HtmlWrapperTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/MxmlcTask.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigAppendString.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigBoolean.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigInt.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigString.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/ConfigVariable.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/NestedAttributeElement.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/OptionSpec.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/RepeatableConfigString.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/DefaultScriptLimits.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/DefaultSize.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/FlexFileSet.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/Fonts.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/Metadata.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/RuntimeSharedLibraryPath.java
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/URLElement.java
        flex/sdk/trunk/modules/compiler/src/java/flash/css/LocalSource.java
        flex/sdk/trunk/modules/compiler/src/java/flash/css/URLSource.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/linker/DependencyWalker.java
    Added Paths:
        flex/sdk/trunk/modules/antTasks/src/flex/ant/config/package.html
        flex/sdk/trunk/modules/antTasks/src/flex/ant/package.html
        flex/sdk/trunk/modules/antTasks/src/flex/ant/types/package.html

    Thank you very much!
    I cant believe this little comment has been so helpful!
    But yes it is:
    I explain, despite my efforts to find, googled it, forums, faqs, etc...
    no where it mentionned the manifest.fm file is... INSIDE the .jar!
    Your comment "a zip" made me attempt to open it with winrar, and I found a manifest.fm file inside!
    So far I was editing the one at the "source" of my project and rebuilding it with netbeans.
    I am going to try that now.
    Actually.... :( no its mentionning my main class!
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 10.0-b19 (Sun Microsystems Inc.)
    Main-class: courseworkjava3d.Simple3D
    Class-Path:
    X-COMMENT: Main-Class will be added automatically by buildWell I have no problems uploading you the .jar, it is for a coursework it is not a private project or whatever:
    http://www.uploading.com/files/CM2LKWYU/BetaCourseworkJava3d_Final.jar.html
    Oh and I felt on your comment "dont ask us" as if I was suppose to know... i'm a beginner, I did not know that! And I tried to give you so many infos so you dont lose your time if you want to help, especially as after my own research I found many, many results for this "main class" and I tried a few solutions!
    Edited by: CupofTea on Apr 13, 2008 3:28 AM

  • [svn:fx-trunk] 15779: * Package and class level javadoc for the flex2. compiler.mxml package

    Revision: 15779
    Revision: 15779
    Author:   [email protected]
    Date:     2010-04-27 20:19:48 -0700 (Tue, 27 Apr 2010)
    Log Message:
    Package and class level javadoc for the flex2.compiler.mxml package
      and subpackages.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/AbstractGenerator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/ImplementationCompiler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/ImplementationGenerator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InterfaceGenerator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InvalidStateAttributeUsage.j ava
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/InvalidStateSpecificValue.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/MXMLNamespaces.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/MxmlCompiler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/analyzer/HTTPServiceAnalyzer .java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/analyzer/RemoteObjectAnalyze r.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/analyzer/SyntaxAnalyzer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/analyzer/WebServiceAnalyzer. java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/AbstractBuilder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/AnonymousObjectGraph Builder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/ArrayBuilder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/ComponentBuilder.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/DocumentBuilder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/HTTPServiceBuilder.j ava
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/InlineComponentBuild er.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/ModelBuilder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/PrimitiveBuilder.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/RemoteObjectBuilder. java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/ServiceRequestBuilde r.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/VectorBuilder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/WebServiceBuilder.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/XMLBuilder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/XMLListBuilder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/Analyzer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/AnalyzerAdapter.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/ArgumentsNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/ArrayNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/BindingNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/BooleanNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/CDATANode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/ClassNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/DeclarationsNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/DefinitionNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/DesignLayerNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/DocumentNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/FunctionNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/HTTPServiceNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/InlineComponentNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/IntNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/LayeredNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/LibraryNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/MetaDataNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/MethodNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/ModelNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/Node.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/NumberNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/OperationNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/PrimitiveNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/PrivateNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/RemoteObjectNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/ReparentNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/RequestNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/ScriptNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/StateNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/StringNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/StyleNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/SyntaxTreeBuilder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/UIntNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/VectorNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/WebServiceNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/XMLListNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/XMLNode.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/XercesClassLoader.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/gen/CodeFragmentList.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/gen/DescriptorGenerator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/gen/StatesGenerator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/gen/TextGen.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/gen/VelocityUtil.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/AttributeHandler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/BindingHandler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/ChildNodeHandler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/DeclarationHandler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/FrameworkDefs.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/NodeTypeResolver.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/StandardDefs.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/TextParser.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/TypeCompatibility.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/ValueNodeHandler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/Assignable.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/Deprecated.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/DynamicProperty.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/Effect.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/ElementTypeNotFound. java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/Event.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/Inspectable.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/Property.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/Style.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/Type.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/TypeTable.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/Array.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/BindingExpression.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/DocumentInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/EventHandler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/LineNumberMapped.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/Method.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/Model.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/MovieClip.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/MxmlDocument.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/Operation.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/StatesModel.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/VariableDeclaration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/Vector.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/decl/InitializedProperty Declaration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/decl/PropertyDeclaration .java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/decl/UninitializedProper tyDeclaration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/ArrayElementInitial izer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/DynamicPropertyInit ializer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/EffectInitializer.j ava
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/EventInitializer.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/Initializer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/NamedInitializer.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/StaticPropertyIniti alizer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/StyleInitializer.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/ValueInitializer.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/VisualChildInitiali zer.java
    Added Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/analyzer/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/builder/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/dom/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/gen/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/lang/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/decl/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/rep/init/package.html
    Removed Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/mxml/reflect/Parameter.java

  • [svn:fx-trunk] 15741: * Package and class level Javadoc for the flex2. compiler.media package.

    Revision: 15741
    Revision: 15741
    Author:   [email protected]
    Date:     2010-04-26 22:43:03 -0700 (Mon, 26 Apr 2010)
    Log Message:
    Package and class level Javadoc for the flex2.compiler.media package.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post-commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/AbstractTranscoder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/DataTranscoder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/FontTranscoder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/ImageTranscoder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/JPEGTranscoder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/LosslessImageTranscoder.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/MovieTranscoder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/SVGTranscoder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/SkinTranscoder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/SoundTranscoder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/XMLTranscoder.java
    Added Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/media/package.html

  • [svn:fx-trunk] 15781: * Package and class level javadoc for the flex2. compiler.swc and

    Revision: 15781
    Revision: 15781
    Author:   [email protected]
    Date:     2010-04-27 21:27:51 -0700 (Tue, 27 Apr 2010)
    Log Message:
    Package and class level javadoc for the flex2.compiler.swc and
      flex2.compiler.util packages and their subpackages.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/Digest.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/Swc.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcAPI.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcArchive.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcCache.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcComponent.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcDependencySet.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcDirectoryArchive.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcException.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcFeatures.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcGroup.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcLazyReadArchive.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcLibrary.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcMovie.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcPathResolver.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcScript.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/SwcWriteOnlyArchive.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/Versions.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/catalog/CatalogReadElement.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/catalog/CatalogReader.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/catalog/CatalogWriter.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/catalog/ReadContext.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/AbstractLogger.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/Benchmark.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/CompilerControl.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/ConsoleLogger.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/DualModeLineNumberMap.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/IteratorList.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/LineNumberMap.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/LinkedQNameMap.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/ManifestParser.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/MultiNameMap.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/NameFormatter.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/NameMappings.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/OrderedProperties.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/PerformanceData.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/PrefixMapping.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/QNameList.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/QNameMap.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/QNameSet.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/SwcDependencyInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/SwcDependencyInfoImpl.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/SwcDependencyUtil.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/SwcExternalScriptInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/SwcExternalScriptInfoImpl.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/ThreadLocalToolkit.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/TraceExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/URLPathResolver.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/VelocityException.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/VelocityManager.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/XMLStringSerializer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/Algorithms.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/DependencyGraph.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/Edge.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/Graph.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/Vertex.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/Visitor.java
    Added Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/catalog/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/swc/zip/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/package.html

  • [svn:fx-trunk] 15702: * Package and class level javadoc for the

    Revision: 15702
    Revision: 15702
    Author:   [email protected]
    Date:     2010-04-26 09:16:12 -0700 (Mon, 26 Apr 2010)
    Log Message:
    Package and class level javadoc for the
      flex2.compiler.[css,extensions,fxg,i18n,io] packages.  Includes some
      dead code removal.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/ConditionTypeNotSupported.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/Import.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/ParseError.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/Reference.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/SelectorTypeNotSupported.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleConflictException.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleDef.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StyleModule.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/Styles.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/StylesContainer.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/UnqualifiedTypeSelector.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/UnresolvedQualifiedTypeSelect or.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/ExtensionManager.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/ExtensionsConfiguratio n.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IApplicationExtension. java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/ICompcExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IConfigurableExtension .java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/ILibraryExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IMxmlcExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IPreCompileExtension.j ava
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/IPreLinkExtension.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/FXGCompiler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/FXGSymbolClass.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/FlexResourceResolver.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/I18nCompiler.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/I18nUtils.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/PropertyText.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/PropertyTranslationFormat.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/TranslationException.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/TranslationFormat.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/TranslationInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/DeletedFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/FileUtil.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/InMemoryFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/LocalFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/NetworkFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/ResourceFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/TextFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/VirtualFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/VirtualZipFile.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/ZipFileHolder.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/Compc.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/tools/Mxmlc.java
    Added Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/fxg/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/i18n/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/io/package.html
    Removed Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/extensions/util/ListMap.java

  • [svn:fx-trunk] 15669: * Package and class level javadoc for the flex2. compiler.css,

    Revision: 15669
    Revision: 15669
    Author:   [email protected]
    Date:     2010-04-23 10:12:53 -0700 (Fri, 23 Apr 2010)
    Log Message:
    Package and class level javadoc for the flex2.compiler.css,
      flex2.compiler.common, and flex2.compiler.config packages.
    QE notes:
    Doc notes:
    Bugs:
    Reviewer: Corey (post-commit)
    Tests run: checkintests
    Is noteworthy for integration: NO
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/CompilerConfiguration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/Configuration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/ConfigurationPathResolver. java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/DefaultsConfigurator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/FontsConfiguration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/FramesConfiguration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/LocalFilePathResolver.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/MetadataConfiguration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/MxmlConfiguration.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/NamespacesConfiguration.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/PathResolver.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/SinglePathResolver.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/AdvancedConfigurationInfo. java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/CommandLineConfigurator.ja va
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationException.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationFilter.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationInfo.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/ConfigurationValue.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/FileConfigurator.java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/SystemPropertyConfigurator .java
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/ConditionTypeNotSupported.jav a
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/CssCompiler.java
    Added Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/common/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/config/package.html
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/css/package.html

Maybe you are looking for

  • Error while retiring the asset through Tcode F-92

    Hi Gurus When I am retiring the asset thriugh Tcode F-92 , it os giving error  "Auxiliary account assignment to asset not possible, remove entry" . Can you please help Thanks Nidhi Tulshan

  • Error creating 'Journalling Business Rules'

    When running 'Maintain Journalling Business Rules' for a table with 19 columns an EMPTY 'BR_xxx_JRN_DEL' trigger is created , hence the CAPI definition fails. If I add 1 more column to make it 20 columns the 'BR_xxx_JRN_DEL' and the CAPI are both gen

  • Print MS Word document in background

    Hi gurus, Is it possible to print Word document in background using ABAP? If yes, which function module could be used? Thanks in advance, Franck

  • Stylus RMX and Logic Express

    Hello, I'm using stylus rmx with LE. I'm stuck. I'm tryin to create a "multi-track", (I believe thats what its called). Right now I'm following a instructional dvd and the instructor just wire 8 tracks to 1 in the enviro window. So I followed and dre

  • F110: Regulate the usage of UPD when executing automatic payment

    Hi all, Thank you for your advice always. Did anyone have a know-how to regulate the usage of UPD, when executing automatic payment? At first, the program uses a BGD process in the application server specified in "target computer", but it seems to su