3d2fff7f98e0a7cd042e73231fa6876006da26e9
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / ftl / model / Method.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 package org.opendaylight.controller.config.yangjmxgenerator.plugin.ftl.model;
9
10 import java.util.List;
11
12 public interface Method {
13     List<String> getModifiers();
14
15     String getReturnType();
16
17     String getName();
18
19     List<Field> getParameters();
20
21     String getJavadoc();
22
23     List<Annotation> getAnnotations();
24 }