blob: bf14b2df7c0b4d74f03d0da557b8cf4e08a0092a [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2006 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.jst.j2ee.internal.provider;
import java.util.Collection;
import org.eclipse.emf.common.notify.AdapterFactory;
import org.eclipse.jst.j2ee.application.Application;
import org.eclipse.jst.j2ee.internal.plugin.J2EEPlugin;
import org.eclipse.jst.j2ee.internal.plugin.J2EEUIMessages;
public class J2EEBinaryModulesItemProvider extends J2EEItemProvider {
public J2EEBinaryModulesItemProvider(Application app, AdapterFactory adapterFactory, Collection children) {
super(adapterFactory, children);
}
public String getText(Object obj) {
return J2EEUIMessages.BINARY;
}
public Object getImage(Object object) {
return J2EEPlugin.getPlugin().getImage("folder"); //$NON-NLS-1$
}
}