2020-10-20 00:58:15 +02:00

41 lines
1.1 KiB
ActionScript
Executable File
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
Copyright (c) 2009 Yahoo! Inc. All rights reserved.
The copyrights embodied in the content of this file are licensed under the BSD (revised) open source license
*/
package com.yahoo.astra.fl.controls.autoCompleteClasses {
import flash.text.TextFormat;
import fl.events.ComponentEvent;
import fl.core.InvalidationType;
import fl.controls.listClasses.CellRenderer;
import fl.core.UIComponent;
//--------------------------------------
// Class description
//--------------------------------------
/**
* The AutoCompleteCellRenderer is the default cell renderer for AutoComplete,
* adding support for highlighted items.
*
* @langversion 3.0
* @playerversion Flash 9.0.28.0
* @see com.yahoo.astra.fl.controls.AutoComplete
*/
public class AutoCompleteCellRenderer extends CellRenderer
{
public function AutoCompleteCellRenderer()
{
super();
super.drawTextFormat();
}
/**
* @private (protected)
*
*/
override protected function drawTextFormat():void
{
//overrides highlighted text if emphasizeMatch is true
}
}
}