Use Objects.equals() in yang-model-api
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / ModuleImport.java
index eceb2fa6bce2ab85b807c13f6828043c243ebf52..28d934fc07ec8593b8317059d9e978d8d67ccbbd 100644 (file)
@@ -1,36 +1,36 @@
-/*\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.yangtools.yang.model.api;\r
-\r
-import java.util.Date;\r
-\r
-/**\r
- * Interface describing YANG 'import' statement.\r
- * <p>\r
- * The import statement makes definitions from one module available inside\r
- * another module or submodule.\r
- * </p>\r
- */\r
-public interface ModuleImport {\r
-\r
-    /**\r
-     * @return Name of the module to import\r
-     */\r
-    String getModuleName();\r
-\r
-    /**\r
-     * @return Revision of module to import\r
-     */\r
-    Date getRevision();\r
-\r
-    /**\r
-     * @return Prefix used to point to imported module\r
-     */\r
-    String getPrefix();\r
-\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.yangtools.yang.model.api;
+
+import java.util.Date;
+
+/**
+ * Interface describing YANG 'import' statement.
+ * <p>
+ * The import statement makes definitions from one module available inside
+ * another module or submodule.
+ * </p>
+ */
+public interface ModuleImport {
+
+    /**
+     * @return Name of the module to import
+     */
+    String getModuleName();
+
+    /**
+     * @return Revision of module to import
+     */
+    Date getRevision();
+
+    /**
+     * @return Prefix used to point to imported module
+     */
+    String getPrefix();
+
+}