Merge "Bug 615: Removed xtend from Topology Manager"
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / ftl / model / FieldSerializer.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.config.yangjmxgenerator.plugin.ftl.model;
10
11 public class FieldSerializer {
12
13     public static String toString(Field field) {
14         StringBuilder build = new StringBuilder();
15         build.append("private ");
16         for (String mod : field.getModifiers()) {
17             build.append(mod + " ");
18         }
19         build.append(field.getType() + " ");
20         build.append(field.getName());
21         if (field.getDefinition() != null) {
22             build.append(" = " + field.getDefinition());
23         }
24         build.append(";");
25         build.append("\n");
26         return build.toString();
27     }
28 }