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 200201 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/hyades/test/ui/TestUIImages.java (-2 / +4 lines)
Lines 14-26 Link Here
14
import org.eclipse.hyades.ui.internal.util.ImageManager;
14
import org.eclipse.hyades.ui.internal.util.ImageManager;
15
15
16
/**
16
/**
17
 * Image manager for the Hyades Test UI plugin.
17
 * Image manager for the Hyades Test UI plug-in.
18
 * <p/>
18
 * <p/>
19
 * 
19
 * 
20
 * 
20
 * 
21
 * @author  Paul E. Slauenwhite
21
 * @author  Paul E. Slauenwhite
22
 * @author  Marcelo Paternostro
22
 * @author  Marcelo Paternostro
23
 * @version March 13, 2008
23
 * @version May 9, 2008
24
 * @since   February 1, 2005
24
 * @since   February 1, 2005
25
 */
25
 */
26
public class TestUIImages extends ImageManager {
26
public class TestUIImages extends ImageManager {
Lines 57-62 Link Here
57
    public static final String IMG_REPORT = "report_obj.gif"; //$NON-NLS-1$
57
    public static final String IMG_REPORT = "report_obj.gif"; //$NON-NLS-1$
58
    public static final String IMG_BEHAVIOR = "behavior_obj.gif"; //$NON-NLS-1$
58
    public static final String IMG_BEHAVIOR = "behavior_obj.gif"; //$NON-NLS-1$
59
    public static final String IMG_SUT = "sut_obj.gif"; //$NON-NLS-1$
59
    public static final String IMG_SUT = "sut_obj.gif"; //$NON-NLS-1$
60
    public static final String IMG_TESTLOG = "testlog_obj.gif"; //$NON-NLS-1$
60
    public static final String IMG_EXECUTION = "execution_obj.gif"; //$NON-NLS-1$
61
    public static final String IMG_EXECUTION = "execution_obj.gif"; //$NON-NLS-1$
61
    public static final String IMG_DATAPOOL = "datapool_obj.gif"; //$NON-NLS-1$
62
    public static final String IMG_DATAPOOL = "datapool_obj.gif"; //$NON-NLS-1$
62
    public static final String IMG_ARTIFACT = "artifact_obj.gif"; //$NON-NLS-1$
63
    public static final String IMG_ARTIFACT = "artifact_obj.gif"; //$NON-NLS-1$
Lines 171-176 Link Here
171
        add(T_OBJ, IMG_REPORT);
172
        add(T_OBJ, IMG_REPORT);
172
        add(T_OBJ, IMG_BEHAVIOR);
173
        add(T_OBJ, IMG_BEHAVIOR);
173
        add(T_OBJ, IMG_SUT);
174
        add(T_OBJ, IMG_SUT);
175
        add(T_OBJ, IMG_TESTLOG);
174
        add(T_OBJ, IMG_EXECUTION);
176
        add(T_OBJ, IMG_EXECUTION);
175
        add(T_OBJ, IMG_DATAPOOL);
177
        add(T_OBJ, IMG_DATAPOOL);
176
        add(T_OBJ, IMG_ARTIFACT);
178
        add(T_OBJ, IMG_ARTIFACT);
(-)src/org/eclipse/hyades/test/ui/internal/navigator/proxy/TestlogFileProxyNode.java (-12 / +14 lines)
Lines 1-5 Link Here
1
/********************************************************************** 
1
/********************************************************************** 
2
 * Copyright (c) 2007 IBM Corporation and others. 
2
 * Copyright (c) 2007, 2008 IBM Corporation and others. 
3
 * All rights reserved.   This program and the accompanying materials 
3
 * All rights reserved.   This program and the accompanying materials 
4
 * are made available under the terms of the Eclipse Public License v1.0 
4
 * are made available under the terms of the Eclipse Public License v1.0 
5
 * which accompanies this distribution, and is available at 
5
 * which accompanies this distribution, and is available at 
Lines 17-42 Link Here
17
import org.eclipse.swt.graphics.Image;
17
import org.eclipse.swt.graphics.Image;
18
18
19
/**
19
/**
20
 * @author jtoomey
20
 * TestlogFileProxyNode.java
21
 *
21
 * <p/>
22
 * 
23
 * 
24
 * @author  Joseph P. Toomey
25
 * @author  Paul E. Slauenwhite
26
 * @version May 9, 2008
27
 * @since   August 16, 2007
22
 */
28
 */
23
public class TestlogFileProxyNode extends NonEMFResourceProxyNode implements
29
public class TestlogFileProxyNode extends NonEMFResourceProxyNode implements IProxyNode {
24
		IProxyNode {
25
30
26
	/**
31
	private Object parent = null;
27
	 * @param file
28
	 */
29
	private Object parent;
30
		
32
		
31
	public TestlogFileProxyNode(IFile file, Object parent) {
33
	public TestlogFileProxyNode(IFile file, Object parent) {
34
		
32
		super(file);
35
		super(file);
36
		
33
		this.parent = parent;
37
		this.parent = parent;
34
		// TODO Auto-generated constructor stub
35
	}
38
	}
36
	
39
	
37
	
40
	
38
	public Image getImage() {
41
	public Image getImage() {
39
		return TestUIImages.INSTANCE.getImage(TestUIImages.IMG_EXECUTION);
42
		return TestUIImages.INSTANCE.getImage(TestUIImages.IMG_TESTLOG);
40
	}
43
	}
41
44
42
	/**
45
	/**
Lines 45-49 Link Here
45
	public Object getParent() {
48
	public Object getParent() {
46
		return parent;
49
		return parent;
47
	}
50
	}
48
49
}
51
}
(-)plugin.xml (-1 / +1 lines)
Lines 728-734 Link Here
728
           name="%REPORTS_GROUP_NAME"/>
728
           name="%REPORTS_GROUP_NAME"/>
729
      <testAsset
729
      <testAsset
730
           extension="testlog"
730
           extension="testlog"
731
           icon="icons/full/obj16/report_obj.gif"
731
           icon="icons/full/obj16/testlog_obj.gif"
732
           name="%TESTLOG_GROUP_NAME"/>
732
           name="%TESTLOG_GROUP_NAME"/>
733
  </extension>
733
  </extension>
734
  <extension
734
  <extension

Return to bug 200201