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
     

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-web-toolkit/-/mb-2zcsKm64J.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to