blob: 32e60a0369b11b0ab3b70587b48b6f3a12b993b3 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2005 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.debug.ui;
import org.eclipse.core.runtime.PlatformObject;
import org.eclipse.debug.internal.ui.DebugPluginImages;
import org.eclipse.debug.internal.ui.IInternalDebugUIConstants;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.ui.model.IWorkbenchAdapter;
/**
* Default implementation for a breakpoint type category.
* <p>
* Clients providing breakpoint type category adapters may instantiate
* and subclass this class.
* </p>
* @since 3.1
*/
public class BreakpointTypeCategory extends PlatformObject implements IBreakpointTypeCategory, IWorkbenchAdapter {
private String fName;
private ImageDescriptor fImageDescriptor = DebugPluginImages.getImageDescriptor(IInternalDebugUIConstants.IMG_OBJS_BREAKPOINT_TYPE);
/**
* Constructs a type category for the given type name.
*
* @param name breakpoint type name
*/
public BreakpointTypeCategory(String name) {
fName = name;
}
/**
* Constructs a type category for the given type name with the given
* image.
*
* @param name breakpoint type name
* @param descriptor image descriptor
*/
public BreakpointTypeCategory(String name, ImageDescriptor descriptor) {
fName = name;
if (descriptor != null) {
fImageDescriptor = descriptor;
}
}
/**
* Returns the name of this category's breakpoint type.
*
* @return the name of this category's breakpoint type
*/
protected String getName() {
return fName;
}
/* (non-Javadoc)
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(Object object) {
if (object instanceof BreakpointTypeCategory) {
BreakpointTypeCategory type = (BreakpointTypeCategory) object;
return type.getName().equals(getName());
}
return false;
}
/* (non-Javadoc)
* @see java.lang.Object#hashCode()
*/
public int hashCode() {
return getName().hashCode();
}
/* (non-Javadoc)
* @see org.eclipse.ui.model.IWorkbenchAdapter#getChildren(java.lang.Object)
*/
public Object[] getChildren(Object o) {
return null;
}
/* (non-Javadoc)
* @see org.eclipse.ui.model.IWorkbenchAdapter#getImageDescriptor(java.lang.Object)
*/
public ImageDescriptor getImageDescriptor(Object object) {
return fImageDescriptor;
}
/* (non-Javadoc)
* @see org.eclipse.ui.model.IWorkbenchAdapter#getLabel(java.lang.Object)
*/
public String getLabel(Object o) {
return getName();
}
/* (non-Javadoc)
* @see org.eclipse.ui.model.IWorkbenchAdapter#getParent(java.lang.Object)
*/
public Object getParent(Object o) {
return null;
}
}