/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package mytime.be; /** * * @author Bruger */ public class Guild extends Group { public Guild(String name, int id, int locationId, String description, String iconUrl) { super(name, id, locationId, description, iconUrl); } }