diff options
Diffstat (limited to 'ridljar/com/sun')
-rw-r--r-- | ridljar/com/sun/star/lib/uno/typeinfo/TypeInfo.java | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ridljar/com/sun/star/lib/uno/typeinfo/TypeInfo.java b/ridljar/com/sun/star/lib/uno/typeinfo/TypeInfo.java index ade934a10dce..44e2da368235 100644 --- a/ridljar/com/sun/star/lib/uno/typeinfo/TypeInfo.java +++ b/ridljar/com/sun/star/lib/uno/typeinfo/TypeInfo.java @@ -2,9 +2,9 @@ * * $RCSfile: TypeInfo.java,v $ * - * $Revision: 1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: jsc $ $Date: 2000-11-08 15:38:23 $ + * last change: $Author: kr $ $Date: 2000-12-07 17:11:38 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -88,6 +88,10 @@ public class TypeInfo return m_name; } + public int getFlags() { + return m_flags; + } + public boolean isUnsigned() { return (m_flags & TypeInfo.UNSIGNED) != 0; |