blob: 9f87b40a7294a0116dab70286d272d32b9313a3a [file] [log] [blame]
/**********************************************************************
* Copyright (c) 2007,2010 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.wst.server.ui.internal;
import org.eclipse.osgi.util.NLS;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Text;
import org.eclipse.wst.server.core.IServer;
import org.eclipse.wst.server.ui.internal.provisional.IServerToolTip;
public class GeneralToolTip implements IServerToolTip {
public GeneralToolTip() {
// do nothing
}
public void createContent(Composite parent, IServer server) {
Text text = new Text(parent,SWT.NONE);
text.setBackground(parent.getBackground());
text.setEditable(false);
String s = "";
if (server.getRuntime() != null)
s += server.getRuntime().getName() + " - ";
s += NLS.bind(Messages.modules, server.getModules().length + "");
text.setText(s);
}
}