alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*******************************************************************************
 * Copyright (c) 2007 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.jdt.debug.testplugin.detailpane;


import java.util.HashSet;
import java.util.Set;

import org.eclipse.debug.ui.IDetailPane;
import org.eclipse.debug.ui.IDetailPaneFactory;
import org.eclipse.jdt.debug.core.IJavaVariable;
import org.eclipse.jface.viewers.IStructuredSelection;

/**
 * Test detail pane factory, used by the test suite to test custom detail pane functionality.
 * 
 * @since 3.3
 * @see DetailPaneManagerTests
 * @see SimpleDetailPane
 * @see TableDetailPane
 * @see IDetailPaneFactory
 */
public class TestDetailPaneFactory implements IDetailPaneFactory {

	/* (non-Javadoc)
	 * @see org.eclipse.debug.internal.ui.views.variables.IDetailsFactory#createDetailsArea(java.lang.String)
	 */
	public IDetailPane createDetailPane(String id) {
		if (id.equals(TableDetailPane.ID)){
			return new TableDetailPane();
		}
		if (id.equals(SimpleDetailPane.ID)){
			return new SimpleDetailPane();
		}
		return null;
	}

	/* (non-Javadoc)
	 * @see org.eclipse.debug.internal.ui.views.variables.IDetailsFactory#getDetailsTypes(org.eclipse.jface.viewers.IStructuredSelection)
	 */
	public Set getDetailPaneTypes(IStructuredSelection selection) {
		Set possibleIDs = new HashSet(2);
		if (selection != null){
			if (selection.size() == 1 && selection.getFirstElement() instanceof IJavaVariable){
				possibleIDs.add(SimpleDetailPane.ID);
			}
			if (selection.size() > 1){
				possibleIDs.add(TableDetailPane.ID);
			}
		}
		return possibleIDs;
	}
	
	/* (non-Javadoc)
	 * @see org.eclipse.debug.ui.IDetailPaneFactory#getDefaultDetailPane(org.eclipse.jface.viewers.IStructuredSelection)
	 */
	public String getDefaultDetailPane(IStructuredSelection selection) {
		if (selection != null){
			if (selection.size() > 1 && selection.getFirstElement() instanceof String){
				if (((String)selection.getFirstElement()).equals("test pane is default")){
					return TableDetailPane.ID;
				}
			}
		}
		return null;
	}

	/* (non-Javadoc)
	 * @see org.eclipse.debug.internal.ui.views.variables.IDetailsFactory#getName(java.lang.String)
	 */
	public String getDetailPaneName(String id) {
		if (id.equals(TableDetailPane.ID)){
			return TableDetailPane.NAME;
		}
		if (id.equals(SimpleDetailPane.ID)){
			return SimpleDetailPane.NAME;
		}
		return null;
	}
	

	/* (non-Javadoc)
	 * @see org.eclipse.debug.internal.ui.views.variables.IDetailsFactory#getDescription(java.lang.String)
	 */
	public String getDetailPaneDescription(String id) {
		if (id.equals(TableDetailPane.ID)){
			return TableDetailPane.DESCRIPTION;
		}
		if (id.equals(SimpleDetailPane.ID)){
			return SimpleDetailPane.DESCRIPTION;
		}
		return null;		
	}
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.