blob: 959fa06fc21a41a8d7f4d839aea6df93732891cd [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008 Angelo Zerr 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
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Angelo Zerr <angelo.zerr@gmail.com> - initial API and implementation
*******************************************************************************/
package org.eclipse.e4.ui.css.core.dom.properties;
import java.util.ArrayList;
import java.util.List;
/**
* Generic class to store informations to manage Gradiant color.
*
* @version 1.0.0
* @author <a href="mailto:angelo.zerr@gmail.com">Angelo ZERR</a>
*
*/
public class Gradient {
private List rgbs = new ArrayList();
private List percents = new ArrayList();
public void addRGB(Object rgb) {
rgbs.add(rgb);
}
public void addPercent(Integer percent) {
percents.add(percent);
}
public List getRGBs() {
return rgbs;
}
public List getPercents() {
return percents;
}
}