Added support for annotations in generated APIs.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-model-api / src / main / java / org / opendaylight / controller / sal / binding / model / api / type / builder / GeneratedPropertyBuilder.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.sal.binding.model.api.type.builder;
9
10 import org.opendaylight.controller.sal.binding.model.api.AccessModifier;
11 import org.opendaylight.controller.sal.binding.model.api.GeneratedProperty;
12 import org.opendaylight.controller.sal.binding.model.api.Type;
13
14 /**
15
16  *
17  */
18 public interface GeneratedPropertyBuilder {
19     
20     public AnnotationTypeBuilder addAnnotation(final String packageName, final String name);
21     
22     public String getName();
23     
24     public boolean addReturnType(final Type returnType);
25     
26     public void accessorModifier(final AccessModifier modifier);
27     
28     public void addComment(final String comment);
29     
30     public void setFinal(final boolean isFinal);
31     
32     public void setReadOnly(final boolean isReadOnly);
33     
34     public GeneratedProperty toInstance(final Type definingType);
35 }