Java tutorial
/*---------------- FILE HEADER KALYPSO ------------------------------------------ * * This file is part of kalypso. * Copyright (C) 2004 by: * * Technical University Hamburg-Harburg (TUHH) * Institute of River and coastal engineering * Denickestrae 22 * 21073 Hamburg, Germany * http://www.tuhh.de/wb * * and * * Bjoernsen Consulting Engineers (BCE) * Maria Trost 3 * 56070 Koblenz, Germany * http://www.bjoernsen.de * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * * Contact: * * E-Mail: * belger@bjoernsen.de * schlienger@bjoernsen.de * v.doemming@tuhh.de * * ---------------------------------------------------------------------------*/ package org.kalypso.ui.rrm.internal.conversion.to12_02; import javax.xml.namespace.QName; import org.apache.commons.lang3.StringUtils; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.kalypso.model.hydrology.project.RrmSimulation; import org.kalypso.ui.rrm.internal.conversion.ITimeseriesVisitor; import org.kalypso.zml.obslink.TimeseriesLinkType; import org.kalypsodeegree.model.feature.Feature; /** * Prepends '../' to every timeseries link it encounters. * * @author Gernot Belger */ public class FixDotDotTimeseriesVisitor implements ITimeseriesVisitor { @Override public IStatus visit(final Feature feature, final QName linkProperty) { final TimeseriesLinkType link = (TimeseriesLinkType) feature.getProperty(linkProperty); if (link == null) return Status.OK_STATUS; final String href = link.getHref(); if (StringUtils.isBlank(href)) return Status.OK_STATUS; final String fixedHref = fixFoldername(href); final String newHref = "../" + fixedHref; //$NON-NLS-1$ link.setHref(newHref); return Status.OK_STATUS; } private String fixFoldername(final String href) { if (href.startsWith("Niederschlag/")) //$NON-NLS-1$ return StringUtils.replaceOnce(href, "Niederschlag/", RrmSimulation.FOLDER_NIEDERSCHLAG + '/'); //$NON-NLS-1$ //$NON-NLS-2$ if (href.startsWith("Precipitation/")) //$NON-NLS-1$ return StringUtils.replaceOnce(href, "Precipitation/", RrmSimulation.FOLDER_NIEDERSCHLAG + '/'); //$NON-NLS-1$ //$NON-NLS-2$ if (href.startsWith("Klima/")) //$NON-NLS-1$ return StringUtils.replaceOnce(href, "Klima/", RrmSimulation.FOLDER_KLIMA + '/'); //$NON-NLS-1$ //$NON-NLS-2$ if (href.startsWith("Climate/")) //$NON-NLS-1$ return StringUtils.replaceOnce(href, "Climate/", RrmSimulation.FOLDER_KLIMA + '/'); //$NON-NLS-1$ //$NON-NLS-2$ if (href.startsWith("Pegel/")) //$NON-NLS-1$ return StringUtils.replaceOnce(href, "Pegel/", RrmSimulation.FOLDER_PEGEL + '/'); //$NON-NLS-1$ //$NON-NLS-2$ if (href.startsWith("Gauges/")) //$NON-NLS-1$ return StringUtils.replaceOnce(href, "Gauges/", RrmSimulation.FOLDER_PEGEL + '/'); //$NON-NLS-1$ //$NON-NLS-2$ if (href.startsWith("Zufluss/")) //$NON-NLS-1$ return StringUtils.replaceOnce(href, "Zufluss/", RrmSimulation.FOLDER_ZUFLUSS + '/'); //$NON-NLS-1$ //$NON-NLS-2$ if (href.startsWith("Tributary/")) //$NON-NLS-1$ return StringUtils.replaceOnce(href, "Tributary/", RrmSimulation.FOLDER_ZUFLUSS + '/'); //$NON-NLS-1$ //$NON-NLS-2$ return href; } }