Help on Format.Justify
i am trying to do a format.justify so i can align my table but third error comes up:
investClass.java:36: cannot find symbol
symbol : method justify(java.lang.String,java.lang.String,int)
location: class BreezySwing.Format
resultFormat+= Format.justify("r", df.format(result), 7)+
^
I have imported these things:
import BreezySwing.Format;
import javax.swing.*;
Here is the code for format.justify:
String resultFormat = Format.justify("l", "Initial Amount", 14)+
Format.justify("r", "Initial Amount", 7)+
Format.justify("r", "Initial Amount", 7)+
Format.justify("r", "Initial Amount", 7)+"\n";
Can anyone please help me!!! Thanks

