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 / GeneratedTOBuilder.java
index ff55fe5f12cbfbe3428848fcdf7d859cc84a2e29..2fc4ccf02f61ff65739a36b378f7ea50bde955d0 100644 (file)
@@ -1,30 +1,27 @@
-/*\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.GeneratedTransferObject;\r
-import org.opendaylight.controller.sal.binding.model.api.Type;\r
-\r
-/**\r
-\r
- *\r
- */\r
-public interface GeneratedTOBuilder extends Type {\r
-\r
-    public EnumBuilder addEnumeration(final String name);\r
-\r
-    public GeneratedPropertyBuilder addProperty(final String name);\r
-\r
-    public boolean addEqualsIdentity(final GeneratedPropertyBuilder property);\r
-\r
-    public boolean addHashIdentity(final GeneratedPropertyBuilder property);\r
-\r
-    public boolean addToStringProperty(final GeneratedPropertyBuilder property);\r
-\r
-    public GeneratedTransferObject 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.GeneratedTransferObject;
+
+/**
+
+ */
+public interface GeneratedTOBuilder extends GeneratedTypeBuilder {
+
+    public GeneratedPropertyBuilder addProperty(final String name);
+
+    public boolean addEqualsIdentity(final GeneratedPropertyBuilder property);
+
+    public boolean addHashIdentity(final GeneratedPropertyBuilder property);
+
+    public boolean addToStringProperty(final GeneratedPropertyBuilder property);
+
+    @Override
+    public GeneratedTransferObject toInstance();
+}