From 839de1536161bf08c62efca31d27b3a94ae1caaf Mon Sep 17 00:00:00 2001 From: Pascal Junck Date: Wed, 3 Nov 2004 07:53:35 +0000 Subject: INTEGRATION: CWS sb22 (1.15.14); FILE MERGED 2004/10/14 10:56:21 sb 1.15.14.2: #i33217# Changed @since tags for C++/Java docu from OOo to UDK. 2004/09/28 14:44:50 sb 1.15.14.1: #i33217# Fixed @since tags. --- ridljar/com/sun/star/uno/Type.java | 30 ++++-------------------------- 1 file changed, 4 insertions(+), 26 deletions(-) (limited to 'ridljar/com') diff --git a/ridljar/com/sun/star/uno/Type.java b/ridljar/com/sun/star/uno/Type.java index 5299e030d213..16b1db87e396 100644 --- a/ridljar/com/sun/star/uno/Type.java +++ b/ridljar/com/sun/star/uno/Type.java @@ -2,9 +2,9 @@ * * $RCSfile: Type.java,v $ * - * $Revision: 1.15 $ + * $Revision: 1.16 $ * - * last change: $Author: obo $ $Date: 2004-06-04 02:56:33 $ + * last change: $Author: pjunck $ $Date: 2004-11-03 08:53:35 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -80,8 +80,6 @@ import java.util.HashMap; * corresponds to the UNO type. Also, a Type can cache a type * description (a com.sun.star.uno.ITypeDescription), which can be * computed and set by TypeDescription.getTypeDescription. - * - * @since UDK1.0 */ public class Type { // The following private static members and static initializer must come @@ -205,8 +203,6 @@ public class Type { /** * Constructs a new Type which defaults to VOID. - * - * @since UDK3.0 */ public Type() { init(null, void.class, false, false); @@ -235,8 +231,6 @@ public class Type { * * @param zClass the Java class of this type. Must not be * null. - * - * @since UDK3.0 */ public Type(Class zClass) { init(null, zClass, false, false); @@ -290,7 +284,7 @@ public class Type { * @param alternative controls which UNO type to choose in case of * ambiguities * - * @since UDK 3.2 + * @since UDK 3.2.0 */ public Type(Class zClass, boolean alternative) { init(null, zClass, alternative, false); @@ -301,8 +295,6 @@ public class Type { * * @param typeDescription a type description. Must not be * null. - * - * @since UDK3.0 */ public Type(ITypeDescription typeDescription) { _typeName = typeDescription.getTypeName(); @@ -314,8 +306,6 @@ public class Type { * Constructs a new Type with the given type name. * * @param typeName the name of this type; must not be null. - * - * @since UDK3.0 */ public Type(String typeName) { if (typeName.startsWith("[]")) { @@ -351,8 +341,6 @@ public class Type { * @throws IllegalArgumentException if the given typeClass is * not simple (for example, a struct or an interface type). This * constructor could not find out the type name in such a case. - * - * @since UDK3.0 */ public Type(TypeClass typeClass) { if(__isTypeClassPrimitive(typeClass)) { @@ -368,8 +356,6 @@ public class Type { * * @return the type class. Will never be null, but might be * UNKNOWN. - * - * @since UDK1.0 */ public TypeClass getTypeClass() { return _typeClass; @@ -379,8 +365,6 @@ public class Type { * Gets the type name. * * @return the type name; will never be null - * - * @since UDK1.0 */ public String getTypeName() { return _typeName; @@ -391,8 +375,6 @@ public class Type { * * @return the type name; may be null in extreme situations * (inconsistent TypeClass, error loading a class) - * - * @since UDK1.0 */ public Class getZClass() { synchronized (this) { @@ -407,8 +389,6 @@ public class Type { * Gives the type description of this type. * * @return the type description; may be null - * - * @since UDK3.0 */ public ITypeDescription getTypeDescription() { return _iTypeDescription; @@ -418,8 +398,6 @@ public class Type { * Sets the type description for this type. * * @param typeDescription the type description - * - * @since UDK3.0 */ public void setTypeDescription(ITypeDescription typeDescription) { _iTypeDescription = typeDescription; @@ -446,7 +424,7 @@ public class Type { * @param type some Type * @return true if this type is a supertype of the given type * - * @since OOo 2.0 + * @since UDK 3.2.0 */ public boolean isSupertypeOf(Type type) { if (_typeClass != type._typeClass) { -- cgit