scaffold.libs_as.feathers.controls.text.ITextEditorViewPort.as Maven / Gradle / Ivy
/*
Feathers
Copyright 2012-2015 Bowler Hat LLC. All Rights Reserved.
This program is free software. You can redistribute and/or modify it in
accordance with the terms of the accompanying license agreement.
*/
package feathers.controls.text
{
import feathers.controls.supportClasses.IViewPort;
import feathers.core.ITextEditor;
/**
* Handles the editing of multiline text.
*
* @see feathers.controls.TextArea
*/
public interface ITextEditorViewPort extends ITextEditor, IViewPort
{
}
}