/* * (c) Copyright 2010-2011 AgileBirds * * This file is part of OpenFlexo. * * OpenFlexo 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. * * OpenFlexo 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 OpenFlexo. If not, see <http://www.gnu.org/licenses/>. * */ package org.openflexo.dm.view; import java.util.Vector; import javax.swing.JComponent; import javax.swing.JSplitPane; import org.openflexo.components.tabular.TabularViewAction; import org.openflexo.dm.model.DMEntityTableModel; import org.openflexo.dm.model.DMMethodTableModel; import org.openflexo.dm.model.DMPropertyTableModel; import org.openflexo.dm.model.DMReadOnlyEntityTableModel; import org.openflexo.dm.model.DMReadOnlyMethodTableModel; import org.openflexo.dm.model.DMReadOnlyPropertyTableModel; import org.openflexo.dm.view.controller.DMController; import org.openflexo.foundation.FlexoModelObject; import org.openflexo.foundation.dm.DMEntity; import org.openflexo.foundation.dm.DMMethod; import org.openflexo.foundation.dm.DMPackage; import org.openflexo.foundation.dm.DMProperty; import org.openflexo.foundation.dm.action.CreateDMEntity; import org.openflexo.foundation.dm.action.CreateDMMethod; import org.openflexo.foundation.dm.action.CreateDMProperty; import org.openflexo.foundation.dm.action.DMDelete; import org.openflexo.selection.SelectionManager; /** * Please comment this class * * @author sguerin * */ public class DMPackageView extends DMView<DMPackage> { private DMEntityTableModel entityTableModel; protected DMTabularView entityTable; private DMPropertyTableModel propertyTableModel; protected DMTabularView propertyTable; private DMMethodTableModel methodTableModel; protected DMTabularView methodTable; public DMPackageView(DMPackage aPackage, DMController controller) { super(aPackage, controller, "package_($localizedName)"); addAction(new TabularViewAction(CreateDMEntity.actionType, controller.getEditor()) { @Override protected Vector<FlexoModelObject> getGlobalSelection() { return getViewSelection(); } @Override protected FlexoModelObject getFocusedObject() { return getDMPackage(); } }); addAction(new TabularViewAction(CreateDMProperty.actionType, controller.getEditor()) { @Override protected Vector<FlexoModelObject> getGlobalSelection() { return getViewSelection(); } @Override protected FlexoModelObject getFocusedObject() { return getSelectedDMEntity(); } }); addAction(new TabularViewAction(CreateDMMethod.actionType, controller.getEditor()) { @Override protected Vector<FlexoModelObject> getGlobalSelection() { return getViewSelection(); } @Override protected FlexoModelObject getFocusedObject() { return getSelectedDMEntity(); } }); addAction(new TabularViewAction(DMDelete.actionType, controller.getEditor()) { @Override protected Vector<FlexoModelObject> getGlobalSelection() { return getViewSelection(); } @Override protected FlexoModelObject getFocusedObject() { return null; } }); finalizeBuilding(); } @Override protected JComponent buildContentPane() { DMPackage aPackage = getDMObject(); if (getDMPackage().getRepository() == null || getDMPackage().getRepository().isReadOnly()) { entityTableModel = new DMReadOnlyEntityTableModel(aPackage, getDMController().getProject()); } else { entityTableModel = new DMEntityTableModel(aPackage, getDMController().getProject()); } addToMasterTabularView(entityTable = new DMTabularView(getDMController(), entityTableModel, 10)); if (getDMPackage().getRepository().isReadOnly()) { propertyTableModel = new DMReadOnlyPropertyTableModel(null, getDMController().getProject()); } else { propertyTableModel = new DMPropertyTableModel(null, getDMController().getProject()); } addToSlaveTabularView(propertyTable = new DMTabularView(getDMController(), propertyTableModel, 7), entityTable); if (getDMPackage().getRepository().isReadOnly()) { methodTableModel = new DMReadOnlyMethodTableModel(null, getDMController().getProject()); } else { methodTableModel = new DMMethodTableModel(null, getDMController().getProject()); } addToSlaveTabularView(methodTable = new DMTabularView(getDMController(), methodTableModel, 7), entityTable); return new JSplitPane(JSplitPane.VERTICAL_SPLIT, entityTable, new JSplitPane(JSplitPane.VERTICAL_SPLIT, propertyTable, methodTable)); } public DMPackage getDMPackage() { return getDMObject(); } public DMEntity getSelectedDMEntity() { SelectionManager sm = getDMController().getSelectionManager(); Vector<FlexoModelObject> selection = sm.getSelection(); if (selection.size() == 1 && selection.firstElement() instanceof DMEntity) { return (DMEntity) selection.firstElement(); } if (getSelectedDMProperty() != null) { return getSelectedDMProperty().getEntity(); } if (getSelectedDMMethod() != null) { return getSelectedDMMethod().getEntity(); } return null; } public DMProperty getSelectedDMProperty() { SelectionManager sm = getDMController().getSelectionManager(); Vector<FlexoModelObject> selection = sm.getSelection(); if (selection.size() == 1 && selection.firstElement() instanceof DMProperty) { return (DMProperty) selection.firstElement(); } return null; } public DMMethod getSelectedDMMethod() { SelectionManager sm = getDMController().getSelectionManager(); Vector<FlexoModelObject> selection = sm.getSelection(); if (selection.size() == 1 && selection.firstElement() instanceof DMMethod) { return (DMMethod) selection.firstElement(); } return null; } public DMTabularView getEntityTable() { return entityTable; } public DMTabularView getPropertyTable() { return propertyTable; } public DMTabularView getMethodTable() { return methodTable; } /** * Overrides willShow * * @see org.openflexo.view.ModuleView#willShow() */ @Override public void willShow() { // TODO Auto-generated method stub } /** * Overrides willHide * * @see org.openflexo.view.ModuleView#willHide() */ @Override public void willHide() { // TODO Auto-generated method stub } }