blob: e65eb26ae498cc568df215e76cb98372b3ed754d [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2019 CEA LIST and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
*
*****************************************************************************/
package org.eclipse.papyrus.model2doc.odt.internal.util;
import com.sun.star.text.XTextContent;
/**
* This interface provides a method to crop the inserted image
*/
public interface IImageCropper {
/**
* This method allows to resize the xTextContent owning the image, editing its "GraphicCrop" property {@link XTextContentConstants#GRAPHIC_CROP}
*
* @param xTextContent
* the {@link XTextContent} containing the image
*/
public void crop(final XTextContent xTextContent);
}