blob: 8a5a75cf19477cb23a79b4960c6ea2202e5d88c1 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Mia-Software.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Fabien Giquel (Mia-Software)
*******************************************************************************/
package enumerations.p1;
import java.util.*;
public enum MyEnumeration {
MA_CONSTANTE_ENUM1("Element", "monLibelle"),
MA_CONSTANTE_ENUM2("Document", "monLibelle"),
MA_CONSTANTE_ENUM3("Workzone", "monLibelle"),
MA_CONSTANTE_ENUM4("Box", "monLibelle");
MyEnumeration(String code, String libelle) {
}
}