I am creating some components that extend JPanel, and don't know whether to use a Pane or a Panel suffix.
Originally posted by vipul gupta1000:
only disappointment was that my girlfriend asked me to score not less than 90% ... she scored 100%... i missed by 1% that was the disappointment....
Originally posted by Valentin Crettaz:
You can find out if a class is immutable by looking at its API. If you can't find any method with which you could change its internal state (i.e. the value of its member variables and the one inherited from the superclasses) then you may deduce that the class is immutable. That is the class has no "mutator" methods, which means you cannot mutate (change) the state of the object. It may have "accessor" method (to access its internal state) though. Mutator are often method beginning with "set..." and accessor with "get..."