Package flash.css

Examples of flash.css.Descriptor


        Iterator<Entry<String, Descriptor>> propertyIterator = declaration.iterator();

        while (propertyIterator.hasNext())
        {
            Entry<String, Descriptor> entry = propertyIterator.next();
            Descriptor descriptor = entry.getValue();
            String propertyName = dehyphenize(descriptor.getName());

            try
            {
                if (propertyName.equals("fontFamily"))
                {
                    processFontFamily(properties, descriptor);
                }
                else
                {
                    processPropertyDescriptor(propertyName, descriptor, properties, effectsStyles);
                }
            }
            catch (CompilerError compilerError)
            {
                compilerError.setPath(descriptor.getPath());
                compilerError.setLine(descriptor.getLineNumber());
                ThreadLocalToolkit.log(compilerError);
            }
        }
    }
View Full Code Here


        Iterator<Entry<String, Descriptor>> propertyIterator = declaration.iterator();

        while (propertyIterator.hasNext())
        {
            Entry<String, Descriptor> entry = propertyIterator.next();
            Descriptor descriptor = entry.getValue();
            String propertyName = dehyphenize(descriptor.getName());

            try
            {
                if (propertyName.equals("fontFamily"))
                {
                    processFontFamily(properties, descriptor);
                }
                else
                {
                    processPropertyDescriptor(propertyName, descriptor, properties, effectsStyles);
                }
            }
            catch (CompilerError compilerError)
            {
                compilerError.setPath(descriptor.getPath());
                compilerError.setLine(descriptor.getLineNumber());
                ThreadLocalToolkit.log(compilerError);
            }
        }
    }
View Full Code Here

TOP

Related Classes of flash.css.Descriptor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.