Hi there
I am trying to create a Custom TextField with a label and replace an existing ui:TextBox in the main ui.xml file with it but get error
Unable to load module entry point class
com.equillore.mcmexternal.client.Mcmexternal .
public class IndicatorTextField extends Composite implements HasText, HasKeyUpHandlers, HasBlurHandlers {
public interface Binder extends UiBinder<Widget, IndicatorTextField> {
}
private static final Binder binder = GWT.create(Binder.class);
public interface Style extends CssResource{
String textStyling();
String requiredInput();
}
@UiField Style style;
@UiField Label label;
@Override
public String getText() {
return label.getText();
}
@Override
public void setText(String text) {
label.setText(text);
}
@Override
public HandlerRegistration addKeyUpHandler(KeyUpHandler handler) {
// TODO Auto-generated method stub
return null;
}
@Override
public HandlerRegistration addBlurHandler(BlurHandler handler) {
// TODO Auto-generated method stub
return null;
}
}
There could be a variety reasons for this but what is a good point to start looking for a solution to this exception
A