//////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2006 Adobe Macromedia Software LLC and its licensors. // All Rights Reserved. The following is Source Code and is subject to all // restrictions on such code as contained in the End User License Agreement // accompanying this product. // //////////////////////////////////////////////////////////////////////////////// package { import com.adobe.flex.extras.controls.springgraph.Item; /** Represents a "word", one of the 2 types of Item in the Thesaurus object model. A word * is simply the string of characters of the word, which is used as this Item's id. * In a thesaurus graph, Words are linked to the various Meanings that the word has. Words * are never linked to other words. */ public class ax_springgraph_thesaurus_Word extends Item { public function ax_springgraph_thesaurus_Word(word: String) { super(word); } public function toString(): String { return id; } } }