Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 181277
Collapse All | Expand All

(-)src/org/eclipse/jdt/junit/launcher/JUnitLaunchConfigurationDelegate.java (-1 / +32 lines)
Lines 497-501 Link Here
497
	protected void abort(String message, Throwable exception, int code) throws CoreException {
497
	protected void abort(String message, Throwable exception, int code) throws CoreException {
498
		throw new CoreException(new Status(IStatus.ERROR, JUnitPlugin.PLUGIN_ID, code, message, exception));
498
		throw new CoreException(new Status(IStatus.ERROR, JUnitPlugin.PLUGIN_ID, code, message, exception));
499
	}
499
	}
500
	
500
501
	/**
502
	 * @return the testElements
503
	 */
504
	public IMember[] getTestElements()
505
	{
506
		return fTestElements;
507
	}
508
509
	/**
510
	 * @param testElements the testElements to set
511
	 */
512
	public void setTestElements(IMember[] testElements)
513
	{
514
		fTestElements = testElements;
515
	}
516
517
	/**
518
	 * @return the port
519
	 */
520
	public int getPort()
521
	{
522
		return fPort;
523
	}
524
525
	/**
526
	 * @param port the port to set
527
	 */
528
	public void setPort(int port)
529
	{
530
		fPort = port;
531
	}	
501
}
532
}

Return to bug 181277