blob: 8dc3b7255c7e1b42f397c47e798ba871cbf9e307 [file] [log] [blame]
package
{
import flash.events.IEventDispatcher;
import org.apache.flex.core.SimpleValuesImpl;
import org.apache.flex.html.staticControls.beads.TextButtonBead;
import org.apache.flex.html.staticControls.beads.TextFieldBead;
import org.apache.flex.html.staticControls.beads.models.TextModel;
public class MySimpleValuesImpl extends SimpleValuesImpl
{
public function MySimpleValuesImpl()
{
super();
values = {
ITextButtonBead: TextButtonBead,
ITextBead: TextFieldBead,
ITextModel: TextModel
}
}
}
}