Я не могу понять, почему я получаю следующие ошибки со следующим кодом:
HelloWorldApp.java: 9: pushScreen (net.rim.device.api.ui.Screen) в net.rim.device.api.ui.UiApplication нельзя применять к (com.beginningblackberry.helloworld.HelloWorldMainScreen)
pushScreen (В начале);
HelloWorldMainScreen.java: 10: не удается найти символ
символ: метод add (net.rim.device.api.ui.component.LabelField)
расположение: класс com.beginningblackberry.helloworld.HelloWorldMainScreen
добавить (labelField);
\\HelloWorldApp.java
package com.beginningblackberry.helloworld;
import net.rim.device.api.ui.UiApplication;
class HelloWorldApp extends UiApplication {
HelloWorldApp() {
HelloWorldMainScreen mainScreen = new HelloWorldMainScreen();
pushScreen(mainScreen);
}
public static void main(String[] args){
HelloWorldApp app = new HelloWorldApp();
app.enterEventDispatcher();
}
}
\\ HelloWorldMainScreen.java
package com.beginningblackberry.helloworld;
import net.rim.device.api.ui.container.MainScreen;
import net.rim.device.api.ui.component.LabelField;
class HelloWorldMainScreen {
HelloWorldMainScreen() {
LabelField labelField = new LabelField("Hello World");
add(labelField);
}
}