Java-JSP working with packages and classes

Hi everybody,
I'm bearly new on Java-JSP developping and I wanted to know how Tomcat (for example) manage the imported packages and classes.
The fact is I'm working on a project ('/bob') which use some packages that I don't see in the '/bob' directory. So, is that possible that '/bob' is downloading packages and classes from Internet to '/bob/download' virtual repertory and use it? If it is true, is it possible to override this download by making '/bob' project using local packages or classes (example : com.boblibrary.classes.util in '/bob/WEB-INF/classes/com/boblibrary/classes/util') instead of downloading it?
Therefore, the '/bob' project is using bugged classes (that I think it downloads from Internet) which I can't correct.
Thanks for your help.
- Renaud

Thank you for your answer, but I can't imagine where is physicaly the class that my project use and show me as http://localhost:8080/atlassian-jira-3.13.2/download/ressources/br.com.ecore.jira.plugin.projectViewPlugin:ProjectViewTabPanel/js/projectviewtabpanel.js. Where is that Javascript file suppose to be on my hard drive? Or where is that class 'br.com.ecore.jira.plugin.projectViewPlugin' suppose to be on my hard drive? If it is not dowloaded from the Internet.
I have no trace of that class on 'atlassian-jira-3.13.2/', neither on 'jdk1.6.0_18/', 'jre6/' or 'apache-tomcat-5.5.28/common/classes/'.
Thanks.

Similar Messages

  • Working with ArrayList and classes

    Hi:
    I'm trying to create a program that adds and remove information to an ArrayList. I can't figure out the errors that I'm having. See if anyone can help me.
    import javax.swing.JOptionPane;
    import java.io.*;
    import java.util.*;
    public class StudentRegistration {
        class Name
           // String first = JOptionPane.showInputDialog(null,"Enter First Name","First Name", JOptionPane.QUESTION_MESSAGE);
           // String last = JOptionPane.showInputDialog(null,"Enter Last Name","Last Name", JOptionPane.QUESTION_MESSAGE);
            String first, last;
            Name(String first, String last)
                this.first = first;
                this.last =last;                   
            String getFirstName()
                return first;           
            String getLastName()
                return last;
        class Address
            String street, city, state, zipcode;
            Address(String street, String city, String state, String zipcode)
                this.street = street;
                this.city = city;
                this.state = state;
                this.zipcode = zipcode;
            String getStreet()
                return street;
            String getCity()
                return city;
            String getState()
                return state;
            String getZipCode()
                return zipcode;
         public class Student
            String id;
            Date date;
            Address address;
            Name name;
            Student (String id, Name name, Address address)
                this.id = id;
                this.name =name;
                this.address = address;
                date = new Date();
            String getId()
                return id;
        class Admissions
            ArrayList list;
            int i;
            boolean found;
            Admissions()
                list = new ArrayList();
            void addStudent(Student s)
                list.add(s);
            Object getStudent(int i)
                return list.remove(i);
            boolean Empty()
                return list.isEmpty();
            boolean getIndex(String id)
                int i, index;
                boolean found;
                while(i < index && !found)
                    Object o = list.get(i);
                    if (o instanceof Student)
                        Student s = (Student) o;
                        if (s.getId().compareto(id))
                            found = true;
                        else i++ ;
               return found;
        public static void main(String[] args)
            Admissions adm = new Admissions();
            Admissions drop = new Admissions();
            boolean cont;
            while(cont = true)
                  String input = JOptionPane.showInputDialog(null, "Enter Selection Number:\n\n 1 - Add Student\n 2 - Remove Student\n 3 - Print List\n 4 - Quit\n" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                  int selection = Integer.parseInt(input);
                    switch (selection)
                    case 1:{
                        String first = JOptionPane.showInputDialog(null, "First Name:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        String last = JOptionPane.showInputDialog(null, "Last Name:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        Name name = new Name(first, last);
                        String street = JOptionPane.showInputDialog(null, "Street Address:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        String city = JOptionPane.showInputDialog(null, "City:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        String state = JOptionPane.showInputDialog(null, "State:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        String zipcode = JOptionPane.showInputDialog(null, "Zip Code:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        Address address = new Address(street, city, state, zipcode);
                        String id = JOptionPane.showInputDialog(null, "Student ID:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        Student s = new Student(name, address, id);
                        adm.addToList(s);
                    case 2:{
                        if(!adm.Empty());
                            String id = JOptionPane.showInputDialog(null, "Student ID:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                            if(adm.getIndex(id))
                                index = adm.index();
                                drop.addToList(adm.getStudent(index));
                    case 3:{
               case 4: break;
               default: JOptionPane.showMessageDialog(null,"Wrong selection.");
            System.exit(0);
        

    yes i did but it didn't changed anything..... but I fixed them by making the classes static. Logically is ok but I 'm not sure really if it 's ok. Now I have only one error two times here is the code again and the output...
    import javax.swing.JOptionPane;
    import java.io.*;
    import java.util.*;
    public class StudentRegistration {
        public static class Name
            String first, last;
            Name(String first, String last)
                this.first = first;
                this.last =last;                   
            String getFirstName()
                return first;           
            String getLastName()
                return last;
        public static class Address
            String street, city, state, zipcode;
            Address(String street, String city, String state, String zipcode)
                this.street = street;
                this.city = city;
                this.state = state;
                this.zipcode = zipcode;
            String getStreet()
                return street;
            String getCity()
                return city;
            String getState()
                return state;
            String getZipCode()
                return zipcode;
         public static class Student
            String id;
            Date date;
            Address address;
            Name name;
            Student (String id, Name name, Address address)
                this.id = id;
                this.name =name;
                this.address = address;
                date = new Date();
            String getId()
                return id;
        public static class Admissions
            ArrayList list;
            int i, index, lastindex = list.size();
            boolean found;
            Admissions()
                list = new ArrayList();
            void addStudent(Student s)
                list.add(s);
            Object getStudent(int i)
                return list.remove(i);
            boolean Empty()
                return list.isEmpty();
            boolean getFound(String id)
                while(i < lastindex && !found)
                    Object o = list.get(i);
                    if (o instanceof Student)
                        Student s = (Student) o;
                        if (s.getId().compareTo(id) == 0)
                            found = true;
                        else i++ ;
               return found;
            int getIndex(String id)
                while(i < lastindex && !found)
                   Object index = list.get(i);
                    if (index instanceof Student)
                        Student s = (Student) index;
                        if (s.getId().compareTo(id) == 0)
                            found = true;
                        else i++ ;
                 return index;          
        public static void main(String[] args)
            Admissions adm = new Admissions();
            Admissions drop = new Admissions();
            boolean cont;
            while(cont = true)
                  String input = JOptionPane.showInputDialog(null, "Enter Selection Number:\n\n 1 - Add Student\n 2 - Remove Student\n 3 - Print List\n 4 - Quit\n" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                  int selection = Integer.parseInt(input);
                    switch (selection)
                    case 1:{
                        String first = JOptionPane.showInputDialog(null, "First Name:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        String last = JOptionPane.showInputDialog(null, "Last Name:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        Name name = new Name(first, last);
                        String street = JOptionPane.showInputDialog(null, "Street Address:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        String city = JOptionPane.showInputDialog(null, "City:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        String state = JOptionPane.showInputDialog(null, "State:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        String zipcode = JOptionPane.showInputDialog(null, "Zip Code:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        Address address = new Address(street, city, state, zipcode);
                        String id = JOptionPane.showInputDialog(null, "Student ID:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                        Student s = new Student(id, name, address);
                        adm.addToList(s);     //The error is here. It says that can't find add.ToList
                    case 2:{
                        if(!adm.Empty());
                            String id = JOptionPane.showInputDialog(null, "Student ID:" ,"Sutdents Services", JOptionPane.QUESTION_MESSAGE);
                            if(adm.getFound(id))
                               int index = adm.getIndex(id);
                               drop.addTolist(adm.getStudent(index));  //And also here. Same error
                    case 3:{
               case 4: break;
               default: JOptionPane.showMessageDialog(null,"Wrong selection.");
            System.exit(0);
    }This is in the output window:
    init:
    deps-jar:
    Compiling 1 source file to C:\Java\StudentRegistration\build\classes
    C:\Java\StudentRegistration\src\StudentRegistration.java:184: cannot find symbol
    symbol : method addTolist(StudentRegistration.Student)
    location: class StudentRegistration.Admissions
    adm.addTolist(s);
    C:\Java\StudentRegistration\src\StudentRegistration.java:195: cannot find symbol
    symbol : method addTolist(java.lang.Object)
    location: class StudentRegistration.Admissions
    drop.addTolist(adm.getStudent(index));
    Note: C:\Java\StudentRegistration\src\StudentRegistration.java uses unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    2 errors
    BUILD FAILED (total time: 0 seconds)

  • How can one get java to work with SnowLeopard and FF13

    SInce the install of the most recent Java update (9)  for SnowLeopard (10.6.8) Firefox 13 simply advises that there is no plugin installed.  The behavior the update indicates will take place (where the web page provides the option to enable the plugin) simply has never presented itself. At this point, java is simply no longer available on a Mac running SNowLeopard and using Firefox.  Is there a solution to this other than upgrading to Lion?

    Yes. However, do note that FF is only on the machine for testing, I don't use it, preferring Safari. Any further issues with FF are best answered at http://support.mozilla.org/

  • Problem when working with package???Please, help me!!!

    I got 3 .java files from one Java tutorial as follow:
    Server.java (in package mygame.server)
    Utilities.java (in package mygame.shared)
    Client.java (in package mygame.client)
    All the above files are placed in "E:\Java Programmes\source"
    After compiling, i got correspponding .class files:
    Server.class (placed in "E:\Java Programmes\class\mygame\server")
    Utilities.class (placed in "E:\Java Programmes\class\mygam\shared")
    Clients.class (placed in "E:\Java Programmes\class\mygame\client")
    But when i run Server.class which contains main method, i got error as follow:
    E:\Java Programmes>java class\mygame\server\Server
    Exception in thread "main" java.lang.NoClassDefFoundError: class\mygame\server\S
    erver (wrong name: mygame/server/Server)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    That was very puzzled for me. I cannot find out what wrong with my files. Please., any boby, help me!!! I always got this problem when working with package and managing files. Thanls a lot.

    java -cp "E:\Java Programmes\class" mygame.server.Server

  • To know abt java packages and classes

    please give an idea abt how to find the list of packages and classes
    available in the java packages

    Which ones? If you mean the ones available in the standard Java APIs, check the java-docs:
    1.4.2:
    http://java.sun.com/j2se/1.4.2/docs/api/
    1.5:
    http://java.sun.com/j2se/1.5.0/docs/api/

  • [svn] 2932: Updated manifests with recent changes to TCAL package and class names.

    Revision: 2932
    Author: [email protected]
    Date: 2008-08-20 14:01:37 -0700 (Wed, 20 Aug 2008)
    Log Message:
    Updated manifests with recent changes to TCAL package and class names.
    Reviewer: Jason
    Bugs: SDK-16531
    QA: No
    Doc: No
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16531
    Modified Paths:
    flex/sdk/trunk/frameworks/fxg-manifest.xml
    flex/sdk/trunk/frameworks/mxml-2009-manifest.xml

    Revision: 2932
    Author: [email protected]
    Date: 2008-08-20 14:01:37 -0700 (Wed, 20 Aug 2008)
    Log Message:
    Updated manifests with recent changes to TCAL package and class names.
    Reviewer: Jason
    Bugs: SDK-16531
    QA: No
    Doc: No
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-16531
    Modified Paths:
    flex/sdk/trunk/frameworks/fxg-manifest.xml
    flex/sdk/trunk/frameworks/mxml-2009-manifest.xml

  • Package and class viewer

    Hello,
    Is there an equivalent of a menu item or short-cut key to bring up package and class viewer? A similar feature exists in Eclipse which builds the indexes and Ctrl-Shift-T will bring up all the classes in your workspace / project. I have seen something similar in Jdeveloper while running in debug mode, if it cannot find a file that is need for trace options, it throws up a window that says "Package and Class Viewer". It would be useful to access that during development as well.
    Thanks
    Farooq.

    Thanks for the repose. Ctrl+ , along with Ctrl= is doing the same thing. Also discovered Ctrl- will bring up java classes. Only thing remains is the remaining files in the project e.g XML or JSP files
    Thanks for you, got me in the right direction.

  • Working with AS3 External Classes

    Ok... trying to work with AS3 external classes. I have a movieClip that I want to also function as a button. Instance name is "_onDemand". This movieClip is on the stage of my Home.fla.  "_onDemand" movieClip properties   Class:HomePage  Base clase: flash.display.MovieClip
    I want the user to click this movieClip and take the user to an external URL within a new browser window or tab.
    Can anyone help me? Or at least point me to a really really good tutroial that does exactly this using external classes?
    Thanks so much,
    Mark
    My code:
    package com.cox4college.pages
    import com.gaiaframework.templates.AbstractPage;
    import com.gaiaframework.events.*;
    import com.gaiaframework.debug.*;
    import com.gaiaframework.api.*;
    import flash.display.*;
    import flash.events.*;
    import com.greensock.TweenMax;
    import flash.net.URLRequest;
    import flash.net.navigateToURL;
    public class HomePage extends AbstractPage
    public function HomePage()
    super();
    alpha = 0;
    //new Scaffold(this);
    override public function transitionIn():void
    super.transitionIn();
    TweenMax.to(this, 0.3, {alpha:1, onComplete:transitionInComplete});
    override public function transitionOut():void
    super.transitionOut();
    TweenMax.to(this, 0.3, {alpha:0, onComplete:transitionOutComplete});
    public class _onDemand extends Sprite
    // Link Navigation button handlers
    public var _onDemand:Sprite;
    // if you want a hand cursor
    _onDemand.buttonMode = true;
    _onDemand.useHandCursor = true;
    _onDemand.addEventListener(MouseEvent.CLICK, onDemandClickHandler);
    _onDemand.addEventListener(MouseEvent.ROLL_OVER, onDemandRollOverHandler);
    _onDemand.addEventListener(MouseEvent.ROLL_OUT, onDemandRollOutHandler);
    public function onDemandClickHandler(e:MouseEvent):void{
    navigateToURL(new URLRequest("http://ww2.cox.com/residential/santabarbara/tv/ondemand.cox"));
    public function onDemandRollOverHandler(event:MouseEvent):void{
    _onDemand.gotoAndStop("hover");
    public function onDemandRollOutHandler(event:MouseEvent):void{
    _onDemand.gotoAndStop("static");
    Getting the following errors:
    1120: Access of undefined property _onDemand.

    Ok. I admit it... I had some wonderful help to resolve this issue. You ever feel like you are on an island learning AS3 External Classes? I feel that way all the time... so far... I plan on not feeling that way soon. I hope this helps someone get off that island.
    package com.domainname.client {
        import flash.display.*;
        import flash.events.*;
        import flash.net.*;
        import flash.utils.*;   
        import caurina.transitions.Tweener;
        import caurina.transitions.properties.*;
        FilterShortcuts.init();   
        ColorShortcuts.init();      
        public class Main extends MovieClip {
            private var coverDelay:Number = 4;
            //#DF6D27
            public function Main():void {
                initMain();
            private function initMain():void {
                mc_form.visible = false;
                Tweener.addTween(mc_cover,{alpha:1,time:1,delay:coverDelay,onComplete:formIn});
                btn_onDemand.buttonMode = true;
                btn_listings.buttonMode = true;
                btn_ppv.buttonMode = true;
                btn_rhapsody.buttonMode = true;
                btn_onDemand.addEventListener(MouseEvent.MOUSE_OVER,navOver);
                btn_onDemand.addEventListener(MouseEvent.MOUSE_OUT,navOut);
                btn_onDemand.addEventListener(MouseEvent.CLICK,navClick);
                btn_listings.addEventListener(MouseEvent.MOUSE_OVER,navOver);
                btn_listings.addEventListener(MouseEvent.MOUSE_OUT,navOut);
                btn_listings.addEventListener(MouseEvent.CLICK,navClick);
                btn_ppv.addEventListener(MouseEvent.MOUSE_OVER,navOver);
                btn_ppv.addEventListener(MouseEvent.MOUSE_OUT,navOut);
                btn_ppv.addEventListener(MouseEvent.CLICK,navClick);
                btn_rhapsody.addEventListener(MouseEvent.MOUSE_OVER,navOver);
                btn_rhapsody.addEventListener(MouseEvent.MOUSE_OUT,navOut);
                btn_rhapsody.addEventListener(MouseEvent.CLICK,navClick);           
                function navOver(evt:MouseEvent):void {
                    Tweener.addTween(evt.target,{_color:0xffc614,time:.2});
                function navOut(evt:MouseEvent):void {
                    Tweener.addTween(evt.target,{_color:0xffffff,time:.2});
                function navClick(evt:MouseEvent):void {
                    var url;
                    switch (evt.target.name) {
                        case 'btn_onDemand':
                        url = new URLRequest("http://ww2.cox.com/residential/santabarbara/tv/ondemand.cox");
                        break;
                        case 'btn_listings':
                        url = new URLRequest("http://ww2.cox.com/myconnection/santabarbara/watch/entertainment/tv-listings.cox");
                        break;
                        case 'btn_ppv':
                        url = new URLRequest("http://ww2.cox.com/residential/santabarbara/tv/pay-per-view.cox");
                        break;
                        case 'btn_rhapsody':
                        url = new URLRequest("http://ww2.cox.com/myconnection/santabarbara/listen.cox");
                        break;                                                           
                    navigateToURL(url,"_blank");

  • [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] 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

  • Naming convention for packages and classes

    Hi all,
    Is there any naming conventions for packages and classes which uses a design pattern ?. If yes what are the conventions used for business delegate,session facade, service locator,DAO and any other patterns.
    rgds
    Anto Paul

    Hi,
    that is a good question and one we have considered also. We dont yet cover the naming conventions for classes based on patterns but maybe will in the future. Currently, in the blueprints apps we tend to do some things like naminga class
    -AccountDAO etc for DAOs
    -For servicelocator we have a class called ServiceLocator viewable at https://adventurebuilder.dev.java.net/source/browse/adventurebuilder/ws/components/servicelocator/src/java/com/sun/j2ee/blueprints/servicelocator/web/ServiceLocator.java?rev=1.4&content-type=text/vnd.viewcvs-markup
    -for session facade, its a bit trickier since the name is so long and we cant add "SessionFacade" to the end of each facade class. I think in general we put "Facade" in the name, usually near the end
    -For Business Delegat, again it seems too long to add to each class name. So in the past we have added
    a "BD" to the names of the delegates. Some examples are at http://java.sun.com/blueprints/patterns/BusinessDelegate.html
    -For transfer objects we usually add a TO to the end of the name. Some examples at http://java.sun.com/blueprints/patterns/TransferObject.html
    Seems like something we could get a bit more consistent about.
    hope that helps,
    Sean

  • [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] 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] 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

Maybe you are looking for

  • Throwing Exception having multiple arguments in constructor

    hi, I am trying to implement exception handling for a JAVA + C++ module. In which C++ exception is caught by a Java module. The c++ code is as follows, try ///////////=========== } catch (Exception1 &e) { jclass clazz = jenv->FindClass("test/Exceptio

  • Safari 3.2: Can't drag images to desktop!?

    Hi there. I just downloaded Safari 3.2 - and I can no longer drag images to my desktop. When I try to do this, the image converts to a weblog or pagesource ( instead of a .gif, jpeg, .png - like it did with the previous version) Anyone else having th

  • IPhone Rebate - Apple, you NEED a consistent policy!

    I have been reading (sometimes skimming) this forum for the last few hours. It is becoming very clear that Apple has been blind sided by this revolt. Did they think the kool-aid would make us turn a blind-eye to this blunder? I digress ... Some peopl

  • No puedo ajustar mis fotos para wallpaper

    Si la foto es grande no puedo achicarla, si es pequeña, la maximiza y no deja encogerla para acomodarla, esto me pasa con iOS 7 en iPod de 5ta generación 

  • Convert spool to htm

    Hello, I'm looking for a way to convert a sap spool output to .htm format and send it with mail. The report is running in backgroud , so i can't use "exporting list to memory" in the submit command. Thanks, koby.