diff options
author | Kay Ramme <kr@openoffice.org> | 2000-12-07 16:11:38 +0000 |
---|---|---|
committer | Kay Ramme <kr@openoffice.org> | 2000-12-07 16:11:38 +0000 |
commit | 27e17c2ace175ca71e871e933cdfa5078f65a5bf (patch) | |
tree | 12751a0e42acb08ad0c767af808fd7ce775f7931 /ridljar/com/sun | |
parent | 13824735057ef25075af8fd0ddb8f14e34c7eeb6 (diff) |
new method: getFlags
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; |