/* * Copyright 2009-2011 Prime Technology. * * 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. */ package org.primefaces.examples.view; public class ColorBean { private String color1; private String color2; private String color3; private String color4; public String getColor1() { return color1; } public void setColor1(String color1) { this.color1 = color1; } public String getColor2() { return color2; } public void setColor2(String color2) { this.color2 = color2; } public String getColor3() { return color3; } public void setColor3(String color3) { this.color3 = color3; } public String getColor4() { return color4; } public void setColor4(String color4) { this.color4 = color4; } }