public class jfxApp extends Application{
}
Can I extend the jfxApp I created like this?
public class newApp extends jfxApp{
}
public class jfxApp extends Application{
}
Can I extend the jfxApp I created like this?
public class newApp extends jfxApp{
}
Yes, you are able to extend something that is already extending something. It will give you access to all methods in jfxApp, Application and newApp.