/* * Copyright (C) NetStruxr, Inc. All rights reserved. * * This software is published under the terms of the NetStruxr * Public Software License version 0.5, a copy of which has been * included with this distribution in the LICENSE.NPL file. */ package er.directtoweb.components.relationships; import com.webobjects.appserver.WOComponent; import com.webobjects.appserver.WOContext; import com.webobjects.directtoweb.D2W; import com.webobjects.directtoweb.D2WDisplayToManyTable; import com.webobjects.directtoweb.InspectPageInterface; /** * Cleaned up some of the formatting on the original toMany table. * * @d2wKey disabled * @d2wKey componentBorder * @d2wKey numCols * @d2wKey showIndex * @d2wKey goingVertically * @d2wKey inspectConfigurationName */ public class ERD2WDisplayToManyTable extends D2WDisplayToManyTable { /** * Do I need to update serialVersionUID? * See section 5.6 <cite>Type Changes Affecting Serialization</cite> on page 51 of the * <a href="http://java.sun.com/j2se/1.4/pdf/serial-spec.pdf">Java Object Serialization Spec</a> */ private static final long serialVersionUID = 1L; public ERD2WDisplayToManyTable(WOContext context) { super(context); } @Override public WOComponent inspectAction() { if(item!=null){ String inspectConfigurationName=(String)d2wContext().valueForKey("inspectConfigurationName"); if(inspectConfigurationName!=null && item!=null){ InspectPageInterface inspectPage=(InspectPageInterface)D2W.factory().pageForConfigurationNamed(inspectConfigurationName, session()); inspectPage.setObject(item); inspectPage.setNextPage(context().page()); System.out.println(inspectPage); return (WOComponent)inspectPage; } } return super.inspectAction(); } }