From 72fdf44e5ecef47fb93339fdf87a6ab01c25b35c Mon Sep 17 00:00:00 2001 From: Sebastian Kaspari Date: Mon, 8 Mar 2010 19:53:53 +0100 Subject: [PATCH] ChannelContainer class is not used --- src/org/yaaic/view/ChannelContainer.java | 68 ------------------------ 1 file changed, 68 deletions(-) delete mode 100644 src/org/yaaic/view/ChannelContainer.java diff --git a/src/org/yaaic/view/ChannelContainer.java b/src/org/yaaic/view/ChannelContainer.java deleted file mode 100644 index 917043e..0000000 --- a/src/org/yaaic/view/ChannelContainer.java +++ /dev/null @@ -1,68 +0,0 @@ -/* - Yaaic - Yet Another Android IRC Client - -Copyright 2009 Sebastian Kaspari - -This file is part of Yaaic. - -Yaaic is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -Yaaic is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with Yaaic. If not, see . -*/ -package org.yaaic.view; - -import android.view.View; - -import org.yaaic.model.Channel; - -/** - * A channel container to group a channel object with a channel view - * - * @author Sebastian Kaspari - */ -public class ChannelContainer -{ - private Channel channel; - private View canvas; - - /** - * Create a new channel container - * - * @param name The channel object - * @param canvas View of the channel - */ - public ChannelContainer(Channel channel, View canvas) - { - this.channel = channel; - this.canvas = canvas; - } - - /** - * Get the view of the channel - * - * @return The channel view - */ - public View getCanvas() - { - return canvas; - } - - /** - * Get the channel object - * - * @return The channel object - */ - public Channel getChannel() - { - return channel; - } -}