Package tv.porst.swfretools.parser.structures

Examples of tv.porst.swfretools.parser.structures.TraitSlot


      final TraitMethod cgradient = (TraitMethod) getUserObject();
      addNode("disp_id", cgradient.getDispId());
      addNode("method", cgradient.getMethod());
    }
    else if (getUserObject() instanceof TraitSlot) {
      final TraitSlot cgradient = (TraitSlot) getUserObject();
      addNode("SpreadMode", cgradient.getSlotId());
      addNode("InterpolationMode", cgradient.getTypeName());
      addNode("NumGradients", cgradient.getvIndex());
      addNode("GradientRecords", cgradient.getvKind());
    }
    else {
      throw new IllegalStateException("Error: Unknown trait kind type");
    }
  }
View Full Code Here

TOP

Related Classes of tv.porst.swfretools.parser.structures.TraitSlot

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.