package android.graphics; /* * #%L * Matos * $Id:$ * $HeadURL:$ * %% * Copyright (C) 2010 - 2014 Orange SA * %% * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * #L% */ @com.francetelecom.rd.stubs.annotation.ClassDone(0) public class Color { // Fields public static final int BLACK = -16777216; public static final int DKGRAY = -12303292; public static final int GRAY = -7829368; public static final int LTGRAY = -3355444; public static final int WHITE = -1; public static final int RED = -65536; public static final int GREEN = -16711936; public static final int BLUE = -16776961; public static final int YELLOW = -256; public static final int CYAN = -16711681; public static final int MAGENTA = -65281; public static final int TRANSPARENT = 0; // Constructors public Color(){ } // Methods public static int alpha(int arg1){ return 0; } public static int red(int arg1){ return 0; } public static int green(int arg1){ return 0; } public static int blue(int arg1){ return 0; } public static int argb(int arg1, int arg2, int arg3, int arg4){ return 0; } public static float brightness(int arg1){ return 0.0f; } public static int rgb(int arg1, int arg2, int arg3){ return 0; } public static float hue(int arg1){ return 0.0f; } public static float saturation(int arg1){ return 0.0f; } public static int parseColor(java.lang.String arg1){ return 0; } public static int HSBtoColor(float [] arg1){ return 0; } public static int HSBtoColor(float arg1, float arg2, float arg3){ return 0; } public static void RGBToHSV(int arg1, int arg2, int arg3, float [] arg4){ } public static void colorToHSV(int arg1, float [] arg2){ } public static int HSVToColor(float [] arg1){ return 0; } public static int HSVToColor(int arg1, float [] arg2){ return 0; } }