blob: c747a81a1e5536125c444201a72a20391193fc27 [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*/
package org.eclipse.osbp.xtext.reportdsl.common.item;
import org.eclipse.birt.report.model.api.AutoTextHandle;
import org.eclipse.birt.report.model.api.ReportItemHandle;
import org.eclipse.birt.report.model.api.activity.SemanticException;
import org.eclipse.osbp.xtext.reportdsl.jvmmodel.ReportGeneratorWorkSet;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class AutoTextItem implements BaseItem {
private static final Logger LOGGER = LoggerFactory.getLogger(AutoTextItem.class);
private final AutoTextHandle fItem;
public AutoTextItem(ReportGeneratorWorkSet workset, String autoText) {
fItem = workset.getFactory().newAutoText(null);
try {
fItem.setAutoTextType(autoText);
} catch (SemanticException e) {
LOGGER.error("{}", e);
}
}
@Override
public ReportItemHandle getHandle() {
return fItem;
}
}