From 56ef5533fc1bce2134721ae64d4d6c18a3526a7a Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Tue, 19 Aug 2014 14:18:44 +0200 Subject: java: classes in java.lang package do not need to be fully qualified Change-Id: I7b18f62336c3a8ca4c538b30ce04c99f202a4756 --- javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'javaunohelper/com/sun/star/lib') diff --git a/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java b/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java index 19d73e49e523..514d2a5ea028 100644 --- a/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java +++ b/javaunohelper/com/sun/star/lib/uno/helper/PropertySet.java @@ -96,7 +96,7 @@ XMultiPropertySet * id is used to identify the storage of the property value. How property values are stored * and retrieved is determined by the methods {@link #convertPropertyValue convertPropertyValue}, * {@link #setPropertyValueNoBroadcast setPropertyValueNoBroadcast} and {@link #getPropertyValue(Property) getPropertyValue} - * These methods expect id to be a java.lang.String which represents the name of a member variable + * These methods expect id to be a String which represents the name of a member variable * which holds the property value. * Only properties which are registered can be accessed. Registration has to occur during * initialization of the inheriting class (i.e. within the contructor). @@ -253,10 +253,10 @@ XMultiPropertySet * can be obtained by {@link #getPropertyId getPropertyId} later on. The identifyer * is used to specify a certain storage for the property's value. If you do not * override {@link #setPropertyValueNoBroadcast setPropertyValueNoBroadcast} or {@link #getPropertyValue(Property)} - * then the argument id has to be a java.lang.String that equals the name of + * then the argument id has to be a String that equals the name of * the member variable that holds the Property's value. * Override this method if you want to implement your own mapping from Property objects to ids or - * if you need ids of a type other then java.lang.String. + * if you need ids of a type other then String. * Then you also need to override {@link #initMappings initMappings} and {@link #getPropertyId getPropertyId}. * @param prop The Property object that is being assigned an id. * @param id The object which identifies the storage used for the property's value. @@ -446,7 +446,7 @@ XMultiPropertySet *
  • java.lang.Long
  • *
  • java.lang.Float
  • *
  • java.lang.Double
  • - *
  • java.lang.String
  • + *
  • String
  • *
  • com.sun.star.uno.Type
  • *
  • objects which implement UNO interfaces
  • *
  • arrays which contain elements of the types above
  • @@ -549,7 +549,7 @@ XMultiPropertySet * property values. The variables must be public. A property must have been registered (e.g. by * {@link #registerProperty(Property, Object)} in order for this method to work. The identifyer argument (type Object) * used in the registerProperty methods must - * be a java.lang.String, which is, the name of the member variable that holds the property value. + * be a String, which is, the name of the member variable that holds the property value. * If one opts to store values differently then one may override * this method, as well as {@link #setPropertyValueNoBroadcast setPropertyValueNoBroadcast} and * {@link #getPropertyValue(Property) getPropertyValue(Property)}. @@ -821,7 +821,7 @@ XMultiPropertySet * of the furthest inheriting class (see {@link #convertPropertyValue convertPropertyValue}) and that the * variables are public. The property must have * been registered, for example by {@link #registerProperty(Property, Object)}. The identifyer Object argument - * must have been a java.lang.String which was the name of the member variable holding the property value. + * must have been a String which was the name of the member variable holding the property value. * When properties are to be stored differently one has to override this method as well as * {@link #convertPropertyValue} and {@link #setPropertyValueNoBroadcast}.
    * If a value is stored in a variable of a primitive type then this method returns an instance of the respective -- cgit