From 297d6cc93ae1bfad9accd711761419c8fba77a82 Mon Sep 17 00:00:00 2001 From: Markus Keller Date: Thu, 14 Feb 2013 13:02:14 +0100 Subject: javadoc: clarified getHSB() --- .../Eclipse SWT/common/org/eclipse/swt/graphics/RGB.java | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGB.java b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGB.java index e7a5630bbd..d3bda91cbd 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGB.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/common/org/eclipse/swt/graphics/RGB.java @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2008 IBM Corporation and others. + * Copyright (c) 2000, 2013 IBM Corporation and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at @@ -10,8 +10,8 @@ *******************************************************************************/ package org.eclipse.swt.graphics; -import org.eclipse.swt.internal.SerializableCompatibility; import org.eclipse.swt.*; +import org.eclipse.swt.internal.*; /** * Instances of this class are descriptions of colors in @@ -152,8 +152,13 @@ public RGB(float hue, float saturation, float brightness) { /** * Returns the hue, saturation, and brightness of the color. * - * @return color space values in float format (hue, saturation, brightness) - * + * @return color space values in float format: + * @see #RGB(float, float, float) + * * @since 3.2 */ public float[] getHSB() { -- cgit