/* * (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.ch; import java.util.logging.Logger; import org.openflexo.GeneralPreferences; import org.openflexo.drm.DocItem; import org.openflexo.drm.DocResourceManager; import org.openflexo.drm.Language; import org.openflexo.foundation.FlexoModelObject; import org.openflexo.foundation.FlexoModelObject.HelpRetriever; import org.openflexo.inspector.InspectableObject; import org.openflexo.inspector.widget.DenaliWidget; public class DefaultHelpRetriever implements HelpRetriever { private static final Logger logger = Logger.getLogger(DenaliWidget.class.getPackage().getName()); private DocResourceManager _docResourceManager; public DefaultHelpRetriever(DocResourceManager docResourceManager) { _docResourceManager = docResourceManager; } /** * Return help text for supplied object, as defined in DocResourceManager as short version Note: return an HTML version, with embedding * <html>...</html> tags. */ @Override public String shortHelpForObject(FlexoModelObject object) { if (!(object instanceof InspectableObject)) { return null; } Language language = _docResourceManager.getLanguage(GeneralPreferences.getLanguage()); DocItem propertyModelItem = _docResourceManager.getDocItemFor((InspectableObject) object); if (propertyModelItem != null) { if (propertyModelItem.getLastApprovedActionForLanguage(language) != null) { return "<html>" + propertyModelItem.getLastApprovedActionForLanguage(language).getVersion().getShortHTMLDescription() + "</html>"; } } return null; } /** * Return help text for supplied object, as defined in DocResourceManager as long version Note: return an HTML version, with embedding * <html>...</html> tags. */ @Override public String longHelpForObject(FlexoModelObject object) { if (!(object instanceof InspectableObject)) { return null; } Language language = DocResourceManager.instance().getLanguage(GeneralPreferences.getLanguage()); DocItem propertyModelItem = _docResourceManager.getDocItemFor((InspectableObject) object); if (propertyModelItem != null) { if (propertyModelItem.getLastApprovedActionForLanguage(language) != null) { String returned = "<html>" + propertyModelItem.getLastApprovedActionForLanguage(language).getVersion().getFullHTMLDescription() + "</html>"; return returned; } } return null; } }