/******************************************************************************* * Copyright (c) 2012-2014 Codenvy, S.A. * 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: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.ide.ext.java.jdt; /** * @author <a href="mailto:evidolob@codenvy.com">Evgen Vidolob</a> * @version $Id: */ public class CUVariables { private String fileName; private String packageName; private String projectName; public CUVariables(String fileName, String packageName, String projectName) { this.fileName = fileName; this.packageName = packageName; this.projectName = projectName; } public String getFileName() { return fileName; } public String getPackageName() { return packageName; } public String getProjectName() { return projectName; } }