1 package net.systemeD.halcyon.styleparser {
3 public class StyleList {
6 A StyleList object is the full list of all styles applied to
7 a drawn entity (i.e. node/way).
9 Each array element applies to that sublayer (z-index). If there
10 is no element, nothing is drawn on that sublayer.
14 public var shapeStyles:Array=[];
15 public var textStyles:Array=[];
16 public var pointStyles:Array=[];
17 public var shieldStyles:Array=[];
19 public function hasStyles():Boolean {
20 return ( (shapeStyles.length + textStyles.length + pointStyles.length + shieldStyles.length) > 0 );