Prevent stub and integrationtest plugins to go into the distribution
[controller.git] / opendaylight / sal / yang-prototype / code-generator / binding-model-api / src / main / java / org / opendaylight / controller / sal / binding / model / api / type / builder / GeneratedTypeBuilder.java
index 6b21250ac1676ea8d89cb9945e480a2a76c34e24..55c6abca6e737ee18780c14aef4238d025519417 100644 (file)
@@ -1,31 +1,33 @@
-/*\r
- * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-package org.opendaylight.controller.sal.binding.model.api.type.builder;\r
-\r
-import org.opendaylight.controller.sal.binding.model.api.GeneratedType;\r
-import org.opendaylight.controller.sal.binding.model.api.Type;\r
-\r
-/**\r
-\r
- *\r
- */\r
-public interface GeneratedTypeBuilder extends Type {\r
-\r
-    public Type getParentType();\r
-\r
-    public void addComment(final String comment);\r
-\r
-    public ConstantBuilder addConstant(final Type type, final String name,\r
-            final Object value);\r
-\r
-    public EnumBuilder addEnumeration(final String name);\r
-\r
-    public MethodSignatureBuilder addMethod(final String name);\r
-\r
-    public GeneratedType toInstance();\r
-}\r
+/*
+ * 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.controller.sal.binding.model.api.type.builder;
+
+import org.opendaylight.controller.sal.binding.model.api.GeneratedType;
+import org.opendaylight.controller.sal.binding.model.api.Type;
+
+/**
+
+ *
+ */
+public interface GeneratedTypeBuilder extends Type {
+
+    public Type getParentType();
+
+    public void addComment(final String comment);
+    
+    public AnnotationTypeBuilder addAnnotation(final String packageName, final String name);
+    
+    public ConstantBuilder addConstant(final Type type, final String name,
+            final Object value);
+
+    public EnumBuilder addEnumeration(final String name);
+
+    public MethodSignatureBuilder addMethod(final String name);
+
+    public GeneratedType toInstance();
+}