Help me! Cannot resolve symbol class SystemInput
import java.awt.*;
import java.io.*;
import java.lang.*;
import text.*;
public class test{
public void Run(){
SystemInput sysIn= new SystemInput();
String theName= sysIn.readString("Enter your name:") ;
System.out.println("\nYou just saying Hello"+ theName);
}
public static void main(String args[ ]){
test theApp= new test();
theApp.Run();
}
}
When compile this programming by JCreator. The Compile has messages error
Package text does not exist
Cannot resolve symbol class SystemInput
Cannot resolve symbol class SysstemInput
I cannot run thhis programmin. Help me!!

