for example this is java file:TestingUI.java
Code:
package sample.sham.ui;
import java.awt.*;
public class TestingUI {
Label label1;
public TestingUI() {
label1 = new Label("Testing label");
}
public void init(){
TestingUI testingUI = new TestingUI();
}
}
how i wan call this Label from JSP??