~ubuntu-branches/ubuntu/trusty/mtasc/trusty-proposed

« back to all changes in this revision

Viewing changes to ocaml/mtasc/std/Selection.as

  • Committer: Bazaar Package Importer
  • Author(s): Paul Wise
  • Date: 2006-03-25 17:15:45 UTC
  • Revision ID: james.westby@ubuntu.com-20060325171545-zjh6rxeqehxiv4v2
Tags: upstream-1.12
Import upstream version 1.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
intrinsic class Selection
 
2
{
 
3
        static function getBeginIndex():Number;
 
4
        static function getEndIndex():Number;
 
5
        static function getCaretIndex():Number;
 
6
        static function getFocus():String;
 
7
        static function setFocus(newFocus:Object):Boolean;
 
8
        static function setSelection(beginIndex:Number, endIndex:Number):Void;
 
9
        static function addListener(listener:Object):Void;
 
10
        static function removeListener(listener:Object):Boolean;
 
11
}
 
12
 
 
13