c257aa6dda61e382a04b0e2c62ac5be525cac00d
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / ftl / model / ConstructorSerializer.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 ConstructorSerializer {
12
13     public static String toString(Constructor constr) {
14         StringBuilder build = new StringBuilder();
15         build.append("    ");
16         if (constr.isPublic()) {
17             build.append("public ");
18         }
19         build.append(constr.getTypeName() + " ");
20         build.append("() {");
21         build.append("\n");
22         build.append("    ");
23         build.append("    ");
24         build.append(constr.getBody());
25         build.append("\n");
26         build.append("    ");
27         build.append("}");
28         build.append("\n");
29         build.append("\n");
30         return build.toString();
31     }
32 }