/* * Copyright (c) 2013 Cisco Systems, Inc. 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 */ package org.opendaylight.mdsal.binding.java.api.generator; import org.opendaylight.mdsal.binding.model.api.CodeGenerator; import org.opendaylight.mdsal.binding.model.api.Enumeration; import org.opendaylight.mdsal.binding.model.api.Type; /** * Transformator of the data from the virtual form to JAVA source code. The result source code represents JAVA * enumeration. For generation of the source code is used the template written in XTEND language. */ public class EnumGenerator implements CodeGenerator { @Override public boolean isAcceptable(final Type type) { return type instanceof Enumeration; } /** * Generates JAVA source code for generated type Type. The code is generated according to the template * source code template which is written in XTEND language. */ @Override public String generate(final Type type) { if (type instanceof Enumeration) { final Enumeration enums = (Enumeration) type; final EnumTemplate enumTemplate = new EnumTemplate(enums); return enumTemplate.generate(); } return ""; } @Override public String getUnitName(final Type type) { return type.getName(); } }