summaryrefslogtreecommitdiff
path: root/ridljar
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2004-03-30 15:36:04 +0000
committerRüdiger Timm <rt@openoffice.org>2004-03-30 15:36:04 +0000
commit1b0c5f9d861a110d78de714afbe359f688579ae1 (patch)
tree77083e54cc7a9b37ea7d01ecb65dd2b6daabc351 /ridljar
parenta0cb66239b77a608bb475b6d0134cce8238944af (diff)
INTEGRATION: CWS sb14 (1.1.126); FILE MERGED
2004/03/17 09:53:27 sb 1.1.126.1: #i26602# Moved isBound from TypeInfo to AttributeTypeInfo.
Diffstat (limited to 'ridljar')
-rw-r--r--ridljar/com/sun/star/lib/uno/typeinfo/AttributeTypeInfo.java13
1 files changed, 10 insertions, 3 deletions
diff --git a/ridljar/com/sun/star/lib/uno/typeinfo/AttributeTypeInfo.java b/ridljar/com/sun/star/lib/uno/typeinfo/AttributeTypeInfo.java
index 9a11e8db1df3..6a220a6bafe2 100644
--- a/ridljar/com/sun/star/lib/uno/typeinfo/AttributeTypeInfo.java
+++ b/ridljar/com/sun/star/lib/uno/typeinfo/AttributeTypeInfo.java
@@ -2,9 +2,9 @@
*
* $RCSfile: AttributeTypeInfo.java,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: jsc $ $Date: 2000-11-08 15:38:23 $
+ * last change: $Author: rt $ $Date: 2004-03-30 16:36:04 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -81,6 +81,13 @@ public class AttributeTypeInfo extends TypeInfo
{
return (m_flags & TypeInfo.READONLY) != 0;
}
-}
+ /**
+ Returns the status of the 'bound' flag.
+ @since UDK 3.2
+ */
+ public final boolean isBound() {
+ return (m_flags & TypeInfo.BOUND) != 0;
+ }
+}