1 package net.systemeD.halcyon.styleparser {
6 This is a custom declaration value that means 'use the value of this tag'.
8 { set ref=tag('dftnumber'); }
11 and returns the value of the dftnumber tag.
13 There isn't really any logic contained within this class, it's just here
14 so that we can store it as a custom property within Styles (like Eval).
18 public class TagValue {
19 private var key:String;
21 public function TagValue(k:String) {
25 public function getValue(tags:Object):String {
29 public function toString():String {
30 return "TagValue("+key+")";