/* Soot - a J*va Optimization Framework * Copyright (C) 2003 Jennifer Lhotak * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ package ca.mcgill.sable.soot.attributes; import org.eclipse.swt.graphics.RGB; public class PosColAttribute { private int startOffset; private int endOffset; private int sourceStartOffset; private int sourceEndOffset; private int red; private int green; private int blue; private int fg; public RGB getRGBColor(){ return new RGB(getRed(), getGreen(), getBlue()); } /** * @return */ public int getBlue() { return blue; } /** * @return */ public int getEndOffset() { return endOffset; } /** * @return */ public int getGreen() { return green; } /** * @return */ public int getRed() { return red; } /** * @return */ public int getStartOffset() { return startOffset; } /** * @param i */ public void setBlue(int i) { blue = i; } /** * @param i */ public void setEndOffset(int i) { endOffset = i; } /** * @param i */ public void setGreen(int i) { green = i; } /** * @param i */ public void setRed(int i) { red = i; } /** * @param i */ public void setStartOffset(int i) { startOffset = i; } /** * @return */ public int getSourceEndOffset() { return sourceEndOffset; } /** * @return */ public int getSourceStartOffset() { return sourceStartOffset; } /** * @param i */ public void setSourceEndOffset(int i) { sourceEndOffset = i; } /** * @param i */ public void setSourceStartOffset(int i) { sourceStartOffset = i; } /** * @return */ public int getFg() { return fg; } /** * @param i */ public void setFg(int i) { fg = i; } }