1 50 51 package org.openlaszlo.iv.flash.api; 52 53 import java.io.PrintStream ; 54 import org.openlaszlo.iv.flash.util.*; 55 56 63 public class ImportedDef extends FlashDef { 64 65 public ImportedDef() {} 66 67 public int getTag() { 68 return -1; 69 } 70 71 public boolean isConstant() { 72 return true; 73 } 74 75 public void write( FlashOutput fob ) {} 76 77 public void printContent( PrintStream out, String indent ) { 78 out.println( indent+"ImportedDef:" ); 79 } 80 81 public FlashItem getCopy( ScriptCopier copier ) { 82 return copyInto( new ImportedDef(), copier ); 83 } 84 85 } 86 87 | Popular Tags |