Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: e5d1474cf1f3c1bc962ee1070fb62e21d40f1662 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/**
 *  Copyright (c) 2012 Mia-Software.
 *
 *  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
 *  http://www.eclipse.org/legal/epl-v10.html
 *
 *  Contributors:
 *  	Gregoire Dupe (Mia-Software) - Bug 361794 - [Restructuring] New customization meta-model
 */
package org.eclipse.papyrus.emf.facet.custom.ui.internal.custompt;

import org.eclipse.papyrus.emf.facet.custom.metamodel.custompt.IColor;

public class Color implements IColor {

	private static final long serialVersionUID = 240076770346261769L;
	private static final int BYTE_SIZE = Byte.SIZE;
	private static final int TWO_BYTE_SIZE = Byte.SIZE * 2;
	public static final int MAX_VALUE = 255;

	private final int red;
	private final int green;
	private final int blue;

	public Color(final int red, final int green, final int blue) {
		this.red = red;
		this.green = green;
		this.blue = blue;
	}

	public Color getColor() {
		return this.getColor();
	}

	public int getRed() {
		return this.red;
	}

	public int getGreen() {
		return this.green;
	}

	public int getBlue() {
		return this.blue;
	}

	@Override
	public boolean equals(final Object obj) {
		boolean result = false;
		if (obj instanceof Color) {
			final Color color = (Color) obj;
			result = (color.getRed() == this.red)
					&& (color.getGreen() == this.green)
					&& (color.getBlue() == this.blue);
		}
		return result;
	}

	@Override
	public int hashCode() {
		return this.red & (this.green << Color.BYTE_SIZE)
				& (this.blue << Color.TWO_BYTE_SIZE);
	}

}

Back to the top