Examples of DefineTag


Examples of flash.swf.tags.DefineTag

            for (Iterator it = frame.symbolClass.class2tag.entrySet().iterator(); it.hasNext();)
            {
                Map.Entry e = (Map.Entry) it.next();
                String className = (String) e.getKey();
                DefineTag tag = (DefineTag) e.getValue();

                def2symbol.put( className, tag );
            }

            if (Swc.FNORD// release SWCs must have magic hash label per frame
View Full Code Here

Examples of flash.swf.tags.DefineTag

    }
   
    void getSymbolClasses(String def, Set<String> symbolClasses)
    {
      // getSymbol() converts def from a.b:C to a.b.C
      DefineTag t = getSymbol(def);  
      HashSet<Tag> visited = new HashSet<Tag>();
      getReferencedSymbolClasses(t, symbolClasses, visited);
    }
View Full Code Here

Examples of flash.swf.tags.DefineTag

     */
    public DefineTag getTag(int idref)
            throws IllegalArgumentException
    {
        Integer key = new Integer(idref);
        DefineTag t = ids.get(key);
        if (t == null)
        {
      // [tpr 7/6/04] work around authoring tool bug of bogus 65535 ids
      if(idref != 65535)
        throw new IllegalArgumentException("symbol " + idref + " not defined");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.