blob: 2405caa19baf5fdd322bc6ae2349eae6f2960d2d [file] [log] [blame]
/******************************************************************************
* Copyright (c) 2002, 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.gmf.runtime.common.ui.dialogs;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.eclipse.gmf.runtime.common.core.util.EnumeratedType;
/**
* Describes how a {@link
* org.eclipse.gmf.runtime.common.ui.dialogs.SelectableElement
* SelectableElement} is selected. This is either selected,
* unselected, or leave.
*
* @author wdiu, Wayne Diu
*/
public class SelectedType
extends EnumeratedType {
private static final long serialVersionUID = 1L;
/**
* An internal unique identifier for selection of elements.
*/
private static int nextOrdinal = 0;
/**
* The element was selected.
*/
public static final SelectedType SELECTED = new SelectedType("Selected"); //$NON-NLS-1$
/**
* The element was unselected.
*/
public static final SelectedType UNSELECTED = new SelectedType("Unselected"); //$NON-NLS-1$
/**
* The element was neither selected nor unselected
*/
public static final SelectedType LEAVE = new SelectedType("Leave"); //$NON-NLS-1$
/**
* The list of values for this enumerated type.
*/
private static final SelectedType[] VALUES = {SELECTED, UNSELECTED, LEAVE};
/**
* Constructs a new model type with the specified name and ordinal.
*
* @param name
* The name of the new model type.
* @param ordinal
* The ordinal for the new model type.
*/
protected SelectedType(String name, int ordinal) {
super(name, ordinal);
}
/**
* Constructs a new model type with the specified name.
*
* @param name
* The name of the new model type.
*/
private SelectedType(String name) {
this(name, nextOrdinal++);
}
/**
* Retrieves the list of constants for this enumerated type.
*
* @return The list of constants for this enumerated type.
*
* @see EnumeratedType#getValues()
*/
protected List getValues() {
return Collections.unmodifiableList(Arrays.asList(VALUES));
}
}