Changeset 250:66441b183ff5
- Timestamp:
- 05/24/08 02:34:19
(4 months ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- branch:
- default
- Message:
Additions for forms
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r249 |
r250 |
|
| 121 | 121 | class Integer : ValueWrapperT!(int) { |
|---|
| 122 | 122 | |
|---|
| 123 | | public static int MIN_VALUE = 0x80000000; |
|---|
| 124 | | public static int MAX_VALUE = 0x7fffffff; |
|---|
| 125 | | public static int SIZE = 32; |
|---|
| | 123 | public static const int MIN_VALUE = 0x80000000; |
|---|
| | 124 | public static const int MAX_VALUE = 0x7fffffff; |
|---|
| | 125 | public static const int SIZE = 32; |
|---|
| 126 | 126 | |
|---|
| 127 | 127 | public this ( int value ){ |
|---|
| … | … | |
| 594 | 594 | return tango.text.Unicode.toFold(src) < tango.text.Unicode.toFold(other); |
|---|
| 595 | 595 | } |
|---|
| | 596 | public int compareTo( String src, String other ){ |
|---|
| | 597 | return src < other; |
|---|
| | 598 | } |
|---|
| 596 | 599 | |
|---|
| 597 | 600 | public bool startsWith( String src, String pattern ){ |
|---|