From: <jbo...@li...> - 2005-12-17 14:06:07
|
Author: wrzep Date: 2005-12-17 09:06:00 -0500 (Sat, 17 Dec 2005) New Revision: 1830 Added: trunk/forge/portal-extensions/forge-status/src/java/org/jboss/forge/status/Column.java Log: http://jira.jboss.com/jira/browse/JBLAB-415 PAwel Added: trunk/forge/portal-extensions/forge-status/src/java/org/jboss/forge/status/Column.java =================================================================== --- trunk/forge/portal-extensions/forge-status/src/java/org/jboss/forge/status/Column.java 2005-12-17 13:16:07 UTC (rev 1829) +++ trunk/forge/portal-extensions/forge-status/src/java/org/jboss/forge/status/Column.java 2005-12-17 14:06:00 UTC (rev 1830) @@ -0,0 +1,40 @@ +/* + * JBoss, Home of Professional Open Source + * Copyright 2005, JBoss Inc., and individual contributors as indicated + * by the @authors tag. See the copyright.txt in the distribution for a + * full listing of individual contributors. + * + * This is free software; you can redistribute it and/or modify it + * under the terms of the GNU Lesser General Public License as + * published by the Free Software Foundation; either version 2.1 of + * the License, or (at your option) any later version. + * + * This software 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 + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this software; if not, write to the Free + * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA + * 02110-1301 USA, or see the FSF site: http://www.fsf.org. + */ + +package org.jboss.forge.status; + +import org.jboss.forge.status.plugins.Plugin; + +/** +* @author Pawel Wrzeszcz +*/ +public class Column { + + String name; + Plugin plugin; + + public Column(String name, Plugin plugin) { + this.name = name; + this.plugin = plugin; + System.out.println("Column " + name + " / " + (plugin == null ? "null" : plugin.getId())); + } +} |