blob: 4b63f0b0558bfa73663b8a4d6c3322452461d845 [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.LabelHandle;
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;
public class LabelItem implements BaseItem {
private final LabelHandle fItem;
public LabelItem(ReportGeneratorWorkSet workset, String i18nKey, String defaultText) {
fItem = workset.factory.newLabel(null);
try {
fItem.setText(defaultText);
fItem.setTextKey(i18nKey);
// System.out.println("key:"+i18nKey+" default:"+defaultText);
} catch (SemanticException e) {
e.printStackTrace();
}
}
@Override
public ReportItemHandle getHandle() {
return fItem;
}
}