Java tutorial
/*- * ========================LICENSE_START================================= * com.geewhiz.pacify.model * %% * Copyright (C) 2011 - 2017 Sven Oppermann * %% * Licensed under the Apache 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.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * =========================LICENSE_END================================== */ package com.geewhiz.pacify.model.utils; import java.io.File; import java.nio.file.Path; import org.apache.commons.io.FilenameUtils; import com.geewhiz.pacify.model.PFile; import com.geewhiz.pacify.model.PProperty; public class ModelUtils { public static PFile clonePFile(PFile cloneFrom, Path file) { String relativePath = FilenameUtils .separatorsToUnix(cloneFrom.getPMarker().getFolder().toPath().relativize(file).toString()); return clonePFile(cloneFrom, relativePath, file.toFile()); } public static PFile clonePFile(PFile cloneFrom, String relativePath, File physicalPath) { PFile aClone = (PFile) cloneFrom.clone(); aClone.setFile(physicalPath); aClone.setUseRegExResolution(false); aClone.setRelativePath(relativePath); aClone.setIsCloneFrom(cloneFrom); for (PProperty pProperty : aClone.getPProperties()) { pProperty.setPFile(aClone); } return aClone; } }