Copyright (c) 2000, 2008 IBM Corporation and others. This program and the accompanying materials are made available under the terms of the Eclipse Public License 2.0 which accompanies this distribution, and is available at https://www.eclipse.org/legal/epl-2.0/ SPDX-License-Identifier: EPL-2.0 Contributors: IBM Corporation - initial API and implementation
/******************************************************************************* * Copyright (c) 2000, 2008 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/
package org.eclipse.ltk.core.refactoring; import org.eclipse.core.runtime.Assert;
A group category is used to annotate change groups so that they can be identified and filtered.

Note: this class is not intended to be subclassed

Since:3.2
@noextendThis class is not intended to be subclassed by clients.
/** * A group category is used to annotate change groups so that * they can be identified and filtered. * <p> * Note: this class is not intended to be subclassed * </p> * * @since 3.2 * * @noextend This class is not intended to be subclassed by clients. */
public class GroupCategory { private String fId; private String fName; private String fDescription;
Creates a new group category with the given name and description.
Params:
  • id – a unique identifier
  • name – the name
  • description – the description
/** * Creates a new group category with the given name and * description. * * @param id a unique identifier * @param name the name * @param description the description */
public GroupCategory(String id, String name, String description) { Assert.isNotNull(id); Assert.isNotNull(name); Assert.isNotNull(description); fId= id; fName= name; fDescription= description; }
Returns the name of the group category.
Returns:the name
/** * Returns the name of the group category. * * @return the name */
public String getName() { return fName; }
Returns the description of the group category.
Returns:the description
/** * Returns the description of the group category. * * @return the description */
public String getDescription() { return fDescription; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null || !getClass().equals(obj.getClass())) return false; return fId.equals(((GroupCategory)obj).fId); } @Override public int hashCode() { return fId.hashCode(); } }