/* * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program 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. * * Copyright (c) 2001 - 2013 Object Refinery Ltd, Pentaho Corporation and Contributors.. All rights reserved. */ package org.pentaho.reporting.engine.classic.core; import org.pentaho.reporting.engine.classic.core.filter.types.bands.CrosstabColumnGroupBodyType; public class CrosstabColumnGroupBody extends GroupBody { private CrosstabColumnGroup group; public CrosstabColumnGroupBody() { setElementType( new CrosstabColumnGroupBodyType() ); group = new CrosstabColumnGroup(); registerAsChild( group ); } public CrosstabColumnGroupBody( final CrosstabColumnGroup group ) { this(); setGroup( group ); } public CrosstabColumnGroup getGroup() { return group; } public void setGroup( final CrosstabColumnGroup group ) { if ( group == null ) { throw new NullPointerException( "The group must not be null" ); } validateLooping( group ); if ( unregisterParent( group ) ) { return; } final Group oldGroup = this.group; this.group.setParent( null ); this.group = group; this.group.setParent( this ); notifyNodeChildRemoved( oldGroup ); notifyNodeChildAdded( this.group ); } protected void removeElement( final Element element ) { if ( element == null ) { throw new NullPointerException(); } if ( element == group ) { this.group.setParent( null ); this.group = new CrosstabColumnGroup(); this.group.setParent( this ); notifyNodeChildRemoved( element ); notifyNodeChildAdded( this.group ); } } public void setElementAt( final int position, final Element element ) { if ( position != 0 ) { throw new IndexOutOfBoundsException(); } setGroup( (CrosstabColumnGroup) element ); } public int getElementCount() { return 1; } public Element getElement( final int index ) { if ( index == 0 ) { return group; } throw new IndexOutOfBoundsException(); } /** * Clones this Element, the datasource and the private stylesheet of this Element. The clone does no longer have a * parent, as the old parent would not recognize that new object anymore. * * @return a clone of this Element. */ public CrosstabColumnGroupBody clone() { final CrosstabColumnGroupBody o = (CrosstabColumnGroupBody) super.clone(); o.group = (CrosstabColumnGroup) group.clone(); o.registerAsChild( o.group ); return o; } /** * Clones the report. * * @return the clone. */ public CrosstabColumnGroupBody derive( final boolean preserveElementInstanceIds ) { final CrosstabColumnGroupBody o = (CrosstabColumnGroupBody) super.derive( preserveElementInstanceIds ); o.group = (CrosstabColumnGroup) group.derive( preserveElementInstanceIds ); o.registerAsChild( o.group ); return o; } }