add texts for "no node available" menu items
[jSite2.git] / src / net / pterodactylus / util / fcp / FcpAdapter.java
index a565956..9b858cf 100644 (file)
@@ -242,6 +242,20 @@ public class FcpAdapter implements FcpListener {
        /**
         * {@inheritDoc}
         */
+       public void receivedPutSuccessful(FcpConnection fcpConnection, PutSuccessful putSuccessful) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
+       public void receivedPutFetchable(FcpConnection fcpConnection, PutFetchable putFetchable) {
+               /* empty. */
+       }
+
+       /**
+        * {@inheritDoc}
+        */
        public void receivedProtocolError(FcpConnection fcpConnection, ProtocolError protocolError) {
                /* empty. */
        }
@@ -253,4 +267,11 @@ public class FcpAdapter implements FcpListener {
                /* empty. */
        }
 
+       /**
+        * {@inheritDoc}
+        */
+       public void connectionClosed(FcpConnection fcpConnection) {
+               /* empty. */
+       }
+
 }