blob: 61a57bcf493fbdbfc2a1a6f0c868c906a241e6e9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 BSI Business Systems Integration AG.
* 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:
* BSI Business Systems Integration AG - initial API and implementation
******************************************************************************/
package org.eclipse.scout.nls.sdk.internal.jdt;
import org.eclipse.core.resources.IFolder;
public class NlsFolder implements INlsFolder {
private int m_type;
private IFolder m_folder;
public NlsFolder(IFolder folder, int type) {
m_folder = folder;
m_type = type;
}
@Override
public IFolder getFolder() {
return m_folder;
}
@Override
public int getType() {
return m_type;
}
}