I have MixedComponent
class that extends Applet
And I have a NumericTextField
class that i have made custom
Textfield by extending TextField
.
Now,
I have both of these classes in Same Package mypackage
.
Now I am making an object of NumericTextField
in MixedComponent
, and it
is giving me the error: Cannot find symbol: NumericTextField
NumericTextField myVar = new NumericTextField();
I want to use an object of type NumericTextField
in MixedComponent
How do i do that?