A very simple problem. The class below attempts to extend editText. The IDE shows the new property recordSource in the drop down but does not show the two new methods. Why is this please?
B4X:
import anywheresoftware.b4a.BA.Author;
import anywheresoftware.b4a.BA.ShortName;
import anywheresoftware.b4a.BA.Version;
import anywheresoftware.b4a.BA.ActivityObject;
import anywheresoftware.b4a.BA.DesignerName;
import anywheresoftware.b4a.objects.*;
@ShortName("DBEditText")
@ActivityObject
@Author("KeirS")
@Version(1.0f)
@DesignerName("DBEditText")
public class dbedittext extends EditTextWrapper {
String recordSource = null;
/**
* Set the recordSource
*/
public void setRecordSource (String setSource) {
recordSource = setSource;
}
/**
* Get the recordSource
*/
public String getRecordSource () {
return recordSource;
}
}