to extend or not
From: - (nobody_at_hoem.om)
Date: 03/29/05
- Next message: R.F. Pels: "Re: redundancy in method name?"
- Previous message: Bjorn Abelli: "Re: hmvc example code"
- Next in thread: R.F. Pels: "Re: to extend or not"
- Reply: R.F. Pels: "Re: to extend or not"
- Reply: Ulf_N: "Re: to extend or not"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Tue, 29 Mar 2005 16:35:54 +0800
which is the preferred style?
public class App {
private JFrame frame;
public App() {
frame = new JFrame();
}
}
or
public class AppFrame extends JFrame {
public AppFrame() {
}
}
- Next message: R.F. Pels: "Re: redundancy in method name?"
- Previous message: Bjorn Abelli: "Re: hmvc example code"
- Next in thread: R.F. Pels: "Re: to extend or not"
- Reply: R.F. Pels: "Re: to extend or not"
- Reply: Ulf_N: "Re: to extend or not"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]