instalação da biblioteca SWT

olá pessoal,
estou tentando instalar a biblioteca SWT e não estou conseguindo. Alguem pode me ajudar?

vi 3 forma na net:
1ª - copiar o arquivo swt.jar para o diretorio da biblioteca
2ª - importar pelo eclipse (import)
3ª - adicionar pelo eclipse (add library) //esta forma não aparece a biblioteca para adicionar

tentei executar o codigo abaixo, mas as bibliotecas não sao reconhecidas.

import org.eclipse.swt.widgets.*;
import org.eclipse.swt.layout.*;
import org.eclipse.swt.*;

public class PrimeiratelaSwt {

	public static void main (String[] args) {
		
		Display display = new Display();
		Shell shell = new Shell(display);
		
		//informe os controles que deseja inicializar.
		shell.setLayout(new RowLayout());
		Text objText = new Text(shell, SWT.BORDER);
		
		shell.open();
		
		while(!shell.isDisposed()) {
			
			if (!display.readAndDispatch()) {
				display.sleep();
			}			
		}
		
		display.dispose();
	}
}

versao da biblioteca: swt-4.2-win32-win32-x86.zip
versao do eclipse: Eclipse IDE for Java EE Developers

desde ja agradeço.

Faça o seguinte:

  1. File > Import…, selecione Plug-in Development > Plug-ins and Fragments.
    Clique em next
  2. No página Import Plug-ins and Fragments selecione as seguintes opções:
    • Import from: The active target platform.
    • Plug-ins and Fragments to import: Select from all plug-ins and fragments found at specified location.
    • Import As: Projects with source folders.
      Clique em next
  3. Na próxima página procure o plugin org.eclipse.swt.win32.win32.x86 for win32 e adicione-o para o menu Plug-ins and Fragments to Import
    Clique em finish
  4. Vá para o Build Path do seu projeto e na aba Projects adicione o projeto org.eclipse.swt.win32.win32.x86
    Clique em OK