package oracle.forms.fd;
import java.awt.Color;

public class MultiProps extends Object {

    public String    tooltip = "" ;
    public String    hint    = "" ;    
    public Color     cForeGround = null ;
    public Color     cBackGround = null ;    
    public int       iNumRec ;
    public int       iValue ;
    public double    dValue ;
    public String    sValue = "" ;
    oracle.forms.ui.FormsToolTip tp = null ;
    
    public MultiProps (int p_iNumRec )
    {
       iNumRec     = p_iNumRec ;     
    }
    
   // set methods
   protected void setTooltip(String s) { tooltip = s ; }
   protected void setHint(String s)    { hint = s ; }
   protected void setFGColor(Color c)  { cForeGround = c ; }
   protected void setBGColor(Color c)  { cBackGround = c ; }   
   protected void setValue(int iValue)  { this.iValue = iValue ; }
   protected void setValue(double dValue)  { this.dValue = dValue ; }
   protected void setValue(String sValue)  { this.sValue = sValue ; }
   protected void setTP(oracle.forms.ui.FormsToolTip tp) { this.tp = tp ; }
   // get methods
   protected String getTooltip() { return tooltip ; }
   protected String getHint()    { return hint ; }
   protected Color  getBGColor() { return cBackGround ; }
   protected Color  getFGColor() { return cForeGround ; }
   protected int    getIValue()  { return iValue ; }
   protected double getFValue()  { return dValue ; }
   protected String getSValue()  { return sValue ; }
   protected oracle.forms.ui.FormsToolTip getTP()  { return tp ; }

}