-
Recent Posts
Recent Comments
- Brian on How to plot multiple UK addresses (by postcode) on a Google Map
- Mark on How to plot multiple UK addresses (by postcode) on a Google Map
- Mark on How to plot multiple UK addresses (by postcode) on a Google Map
- Brian on Interview advice for PGCE ICT with Computing at KCL / IOE
- Brian on Blatant racist discrimination in advertisements
Tag Cloud
abstract accommodation array bursary Chrome date email enumerated type exam Excel fields finance generics Google greenfoot GTP GTTR hardware ICT interview Java KCL laptop linux literature review LMC London network news object OOP Oracle PGCE primary programming QTS QTS tests SER shortcut SSA static travel ubuntu UML variablesArchives
Categories
Meta
Tag Archives: UML
Java interface can extend many interfaces
Java is an object oriented programming language that follows these rules: An interface may extend any number of interfaces A class may extend no more than one class A class may implement any number of interfaces Implementation of these rules … Continue reading
Working with arrays of objects
Consider the following UML class diagram which shows the relationship between a superclass (Vehicle) and two subclasses (Motorbike and Car). Because Motorbike is a Vehicle and Car is a Vehicle, we can create an array of vehicles like this: The … Continue reading
UML Composition Relationship — Java code example
The UML diagram shown below describes a composition relationship between Book and Page. This is a strong type of relationship — Book is responsible for creating, managing, and destroying all instances of Page. The filled-in diamond indicates this is a … Continue reading
Java nested classes explained (alien head example)
Are you confused about Java nested classes? Do you know the difference between an inner class and an outer class? How about a static nested class and an inner class? I have written this brief guide to revise these terms … Continue reading