Ir al contenido principal

Design Patterns in Java - Composite Pattern

Composite Pattern

  • Compose object into tree structures
  • Ex. HashMap:  You can add only one element or  a subtree without any difference 

  • Component is an abstract class

Ex. Create a Menu that can accept accept a MenuItem or another Menu without any difference

--------------------- Main  ----------------------------

public class CompositePattron {
    
    public static void main(String args[]){
    
        Menu mainMenu = new Menu("Main", "/main");
        
        MenuComponent mainMenu2 = new MenuItem("Main", "/main");
        
        mainMenu.add(mainMenu2);
        
        System.out.println(mainMenu.toString());
        
        
        
    }
    
}

  • First create an abstract class to describe the behavior 
    • The method toString will be used to print all type of objects (Menu or MenuItem)
--------------- Abstract class --------------------------
public abstract class MenuComponent {
    
     String head;
     String path;
    
    List<MenuComponent> list = new ArrayList<>();
   
    /**
     * @return the head
     */
    public String getHead() {
        return head;
    }

    /**
     * @return the path
     */
    public String getPath() {
        return path;
    }
    
    
    public abstract String toString();

    String print(MenuComponent mc){
        StringBuilder sb = new StringBuilder(this.head);
        sb.append(": ");
        sb.append(this.path);
        sb.append("\n");
        
        return sb.toString();
    }
    
    public abstract MenuComponent add(MenuComponent mc);
    public abstract MenuComponent remove(MenuComponent mc);
}

  • Second create the Leaf object
    • Because this is a leaf the methods add & remove doesn't have any functionality defined
---------------------- MenuItem ---------------------------------------

public class MenuItem extends MenuComponent {

    public MenuItem(String head, String path) {
        this.head = head;
        this.path = path;

    }

    @Override
    public String toString() {
        return print(this);
    }

    @Override
    public MenuComponent add(MenuComponent mc) {
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    }

    @Override
    public MenuComponent remove(MenuComponent mc) {
        throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
    }

}

  • Create the Composite object, this object contains Leaf objects
    • Due to the leaf objects the methods add & remove now have functionality.
------------------------ Menu ----------------------------
public class Menu extends MenuComponent{
    
    public Menu(String head, String path){
        this.head = head;
        this.path = path;
    }
    
    @Override
    public MenuComponent add(MenuComponent mc){
        this.list.add(mc);
        return mc;
    }
    
    @Override
    public MenuComponent remove(MenuComponent mc){
        this.list.remove(mc);
        return mc;
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder(this.head);
        sb.append(print(this));
        
        Iterator<MenuComponent> itr = this.list.iterator();
        while(itr.hasNext()){
            MenuComponent mc = itr.next();
            sb.append(mc.toString());
        }
        
        return sb.toString();
    }
}








Comentarios

Entradas populares de este blog

C# Using tabs

To use tabs in C# use the TabContainer element from AjaxControlToolkit Include AjaxControlToolkit  Include in the Web.config file, inside the tag <system.web> the following code  <pages>       <controls>         <add tagPrefix="ajaxCTK" namespace="AjaxControlToolkit" assembly="AjaxControlToolkit"/>       </controls>     </pages>   Include TabContainer element First  include TabContainer element that is the section where all the tabs will be displayed. <ajaxCTK:TabContainer ID="TabContainerUpdate" runat="server"                 Height="800"                 CssClass="ajax__tab_style"> </ajaxCTK:TabContainer> Second per each tab include the following code corresponding to each ...

Rails - Basic Steps III

pValidations Validations are a type of ActiveRecord Validations are defined in our models Implement Validations Go to   root_app/app/models Open files  *.rb for each model Mandatory field validates_presence_of   :field Ex:   validates_presence_of    :title Classes The basic syntax is class MyClass        @global_variable                def my_method              @method_variable        end end Create an instance myInstance = MyClass.new Invoke a mehod mc.my_method class() method returns the type of the object In Ruby, last character of method define the behavior If ends with a question -> return a boolean value If ends with an exclamation -> change the state of the object Getter / Setter method def global_variable       return @global_variable end ...

Python create package

Create a root folder Create a sub-folder "example_pkg" that contains the funtionallity packaging_tutorial/ example_pkg/ __init__.py In the root folder create the following structure  packaging_tutorial/ example_pkg/ __init__.py tests/ setup.py LICENSE README.md in the setup.py contains the configuration of the packages your package is found by find_packages() import setuptools with open ( "README.md" , "r" ) as fh : long_description = fh . read () setuptools . setup ( name = "example-pkg-YOUR-USERNAME-HERE" , # Replace with your own username version = "0.0.1" , author = "Example Author" , author_email = "author@example.com" , description = "A small example package" , long_description = long_description , long_description_content_type = "text/markdown" , url = "https://github.com/pypa/sam...