]> git.mxchange.org Git - jfinancials-lib.git/blobdiff - Addressbook/src/org/mxchange/addressbook/FrameworkInterface.java
Bah, bad bad NetBeans. Why the f**k does it need to have a sub directory??? Why not...
[jfinancials-lib.git] / Addressbook / src / org / mxchange / addressbook / FrameworkInterface.java
diff --git a/Addressbook/src/org/mxchange/addressbook/FrameworkInterface.java b/Addressbook/src/org/mxchange/addressbook/FrameworkInterface.java
new file mode 100644 (file)
index 0000000..ae1c570
--- /dev/null
@@ -0,0 +1,48 @@
+/*\r
+ * Copyright (C) 2015 KLC\r
+ *\r
+ * This program is free software: you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation, either version 3 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.\r
+ */\r
+package org.mxchange.addressbook;\r
+\r
+import org.mxchange.addressbook.application.Application;\r
+import org.mxchange.addressbook.client.Client;\r
+import org.mxchange.addressbook.manager.contact.ManageableContact;\r
+\r
+/**\r
+ *\r
+ * @author KLC\r
+ */\r
+public interface FrameworkInterface {\r
+\r
+    /**\r
+     * Getter for contact manager\r
+     * @return Contact manager instance\r
+     */\r
+    public ManageableContact getContactManager();\r
+\r
+    /**\r
+     * Client instance\r
+     * \r
+     * @return the client\r
+     */\r
+    public Client getClient ();\r
+\r
+    /**\r
+     * Application instance\r
+     * \r
+     * @return the application\r
+     */\r
+    public Application getApplication ();\r
+}\r