/******************************************************************************* * Copyright © 2010, 2013 IBM Corporation and others. * 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: * IBM Corporation - initial API and implementation * *******************************************************************************/ package org.eclipse.edt.ide.rui.visualeditor.internal.widget.gen; public class Templates { private String widgetTemplate; private String functionTemplate; public String getWidgetTemplate() { return widgetTemplate; } public void setWidgetTemplate(String widgetTemplate) { this.widgetTemplate = widgetTemplate; } public String getFunctionTemplate() { return functionTemplate; } public void setFunctionTemplate(String functionTemplate) { this.functionTemplate = functionTemplate; } }