Current Code Snippet:
public Panel03(int size, int sec)
{
this(size, sec, getC());
}
public Color[] getC()
{
Color[] tc = new Color[2];
tc[0] = Color.white;
tc[1] = Color.black;
return tc;
}
public Panel03(int size, int sec, Color[] c)
{
old code:
public Panel03(int size, int sec)
{
this(size, sec, new Color{Color.white, Color.black});
}
public Panel03(int size, int sec, Color[] c)
{

New Topic/Question
Reply




MultiQuote








|