Created
April 25, 2016 10:19
-
-
Save mitulmanish/76daecc480b1e454d7794fe570c5c544 to your computer and use it in GitHub Desktop.
Composite Design Patern
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.company; | |
import java.util.List; | |
import java.util.ArrayList; | |
interface Graphic { | |
//Prints the graphic. | |
public void print(); | |
} | |
/** "Composite" */ | |
class CompositeGraphic implements Graphic { | |
//Collection of child graphics. | |
private List<Graphic> childGraphics = new ArrayList<Graphic>(); | |
//Prints the graphic. | |
public void print() { | |
for (Graphic graphic : childGraphics) { | |
graphic.print(); | |
} | |
} | |
//Adds the graphic to the composition. | |
public void add(Graphic graphic) { | |
childGraphics.add(graphic); | |
} | |
//Removes the graphic from the composition. | |
public void remove(Graphic graphic) { | |
childGraphics.remove(graphic); | |
} | |
} | |
/** "Leaf" */ | |
class Ellipse implements Graphic { | |
//Prints the graphic. | |
public void print() { | |
System.out.println("Ellipse"); | |
} | |
} | |
/** Client */ | |
public class Main{ | |
public static void main(String[] args) { | |
//Initialize four ellipses | |
Ellipse ellipse1 = new Ellipse(); | |
Ellipse ellipse2 = new Ellipse(); | |
Ellipse ellipse3 = new Ellipse(); | |
Ellipse ellipse4 = new Ellipse(); | |
//Initialize three composite graphics | |
CompositeGraphic graphic = new CompositeGraphic(); | |
CompositeGraphic graphic1 = new CompositeGraphic(); | |
CompositeGraphic graphic2 = new CompositeGraphic(); | |
//Composes the graphics | |
graphic1.add(ellipse1); | |
graphic1.add(ellipse2); | |
graphic1.add(ellipse3); | |
graphic2.add(ellipse4); | |
graphic.add(graphic1); | |
graphic.add(graphic2); | |
//Prints the complete graphic (four times the string "Ellipse"). | |
graphic.print(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment