Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package se.cambio.openehr.view.panels;
import org.openehr.rm.datatypes.basic.DataValue;
import org.openehr.rm.datatypes.text.DvCodedText;
import se.cambio.cm.model.archetype.vo.CodedTextVO;
import se.cambio.openehr.controller.session.data.ArchetypeManager;
import se.cambio.openehr.controller.session.data.CodedTexts;
import se.cambio.openehr.util.OpenEHRConst;
import se.cambio.openehr.util.TerminologyDialogManager;
import se.cambio.openehr.view.util.WindowManager;
import javax.swing.*;
import java.awt.*;
import java.util.ArrayList;
import java.util.Collection;
public class DVCodedTextPanel extends DVGenericPanel implements DVPanelInterface {
private static final long serialVersionUID = 1L;
private final WindowManager windowManager;
private final ArchetypeManager archetypeManager;
private final TerminologyDialogManager terminologyDialogManager;
private DVTextPanel dvTextPanel;
private DVComboBoxPanel dvComboBoxPanel;
private DVHierarchyCodedTextPanel dvHierarchyPanel;
public DVCodedTextPanel(
WindowManager windowManager,
String idElement, String idTemplate,
boolean allowNull, boolean requestFocus,
ArchetypeManager archetypeManager,
TerminologyDialogManager terminologyDialogManager) {
super(idElement, idTemplate, allowNull, requestFocus);
this.windowManager = windowManager;
this.archetypeManager = archetypeManager;
this.terminologyDialogManager = terminologyDialogManager;
this.setLayout(new BorderLayout());
this.setBackground(null);
this.setBorder(BorderFactory.createEmptyBorder(0, 0, 0, 0));
Collection codedTextsVO =
getCodedTexts().getCodedTextVOs(idTemplate, idElement);
if (!codedTextsVO.isEmpty()) {
if (OpenEHRConst.LOCAL.equals(codedTextsVO.iterator().next().getTerminology())) {
this.add(getDVComboBoxPanel(), BorderLayout.CENTER);
for (CodedTextVO codedTextVO : codedTextsVO) {
getDVComboBoxPanel().insertOption(
codedTextVO.getCode(),
getCodedTexts().getText(codedTextVO, archetypeManager.getUserConfigurationManager().getLanguage()),
codedTextVO.getDescription());
}
} else {
this.add(getDvHierarchyPanel(), BorderLayout.CENTER);
}
} else {
this.add(getDVTextPanel(), BorderLayout.CENTER);
}
}
private DVComboBoxPanel getDVComboBoxPanel() {
if (dvComboBoxPanel == null) {
dvComboBoxPanel = new DVComboBoxPanel(getIdElement(), getIdTemplate(), isAllowsNull(), isRequestFocus()) {
private static final long serialVersionUID = 1L;
@Override
public void setDataValue(DataValue dataValue) {
String code = " ";
if (dataValue instanceof DvCodedText) {
code = ((DvCodedText) dataValue).getDefiningCode().getCodeString();
}
getComboBox().setSelectedItem(code);
}
@Override
public DataValue getDataValue() {
String code = (String) getComboBox().getSelectedItem();
if (!code.trim().isEmpty()) {
CodedTextVO codedTextVO = getCodedTexts().getCodedTextVO(getIdTemplate(), getIdElement(), code);
String name = getCodedTexts().getText(codedTextVO, archetypeManager.getUserConfigurationManager().getLanguage());
return new DvCodedText(name, codedTextVO.getTerminology(), codedTextVO.getCode());
} else {
return null;
}
}
};
}
return dvComboBoxPanel;
}
private DVHierarchyCodedTextPanel getDvHierarchyPanel() {
if (dvHierarchyPanel == null) {
dvHierarchyPanel =
new DVHierarchyCodedTextPanel(
getIdElement(), getIdTemplate(),
isAllowsNull(), isRequestFocus(),
archetypeManager,
terminologyDialogManager, windowManager);
}
return dvHierarchyPanel;
}
private DVTextPanel getDVTextPanel() {
if (dvTextPanel == null) {
dvTextPanel = new DVTextPanel(getIdElement(), getIdTemplate(), isAllowsNull(), isRequestFocus());
}
return dvTextPanel;
}
public void setDataValue(DataValue dataValue) {
if (dvTextPanel != null) {
dvTextPanel.setDataValue(dataValue);
} else if (dvComboBoxPanel != null) {
dvComboBoxPanel.setDataValue(dataValue);
} else if (dvHierarchyPanel != null) {
dvHierarchyPanel.setDataValue(dataValue);
}
}
public DataValue getDataValue() {
if (dvTextPanel != null) {
return dvTextPanel.getDataValue();
} else if (dvComboBoxPanel != null) {
return dvComboBoxPanel.getDataValue();
} else if (dvHierarchyPanel != null) {
return dvHierarchyPanel.getDataValue();
} else {
return null;
}
}
@Override
public Collection getJComponents() {
Collection components = new ArrayList<>();
if (dvTextPanel != null) {
components.addAll(dvTextPanel.getJComponents());
} else if (dvComboBoxPanel != null) {
components.addAll(dvComboBoxPanel.getJComponents());
} else if (dvHierarchyPanel != null) {
components.addAll(dvHierarchyPanel.getJComponents());
}
return components;
}
private CodedTexts getCodedTexts() {
return archetypeManager.getCodedTexts();
}
}
/*
* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 2.0/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 2.0 (the 'License'); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an 'AS IS' basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
*
* The Initial Developers of the Original Code are Iago Corbal and Rong Chen.
* Portions created by the Initial Developer are Copyright (C) 2012-2013
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
*
* Software distributed under the License is distributed on an 'AS IS' basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* ***** END LICENSE BLOCK *****
*/