public class Text extends JFrame implements ActionListener{
public static JTextArea t;
String s;
};
The above would make t available like this: Text.t outside of the class itself. You may want to consider inheritance if it applies in your case or using an instance to begin with, which is:
public class Text extends JFrame implements ActionListener{
private JTextArea t;
private String s;
public JTextArea getTextArea() {
return this.t;
}
};
and then use getters and setters to access their values, which is the Java way of doing things.
To use the above, you would now need to create an instance inside another class:
public class otherClass {
private Text theInstance = new Text();
JTextArea theTextArea = theInstance.getTextArea();
};
Also, stop naming your variables s and t. It's a poor way to code. Use explicit names so that it's easy to tell what a variable is meant to do/used for. Imagine you want to look at your code a few days from now, you may not remember what s and t were meant to do in your code.