add UnknownPeerNoteType
[jSite2.git] / src / net / pterodactylus / util / fcp / FcpAdapter.java
index fd4fb76..8348c44 100644 (file)
@@ -12,64 +12,58 @@ package net.pterodactylus.util.fcp;
 public class FcpAdapter implements FcpListener {
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedNodeHello(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.NodeHello)
+        * @see FcpListener#receivedNodeHello(FcpConnection, NodeHello)
         */
        public void receivedNodeHello(FcpConnection fcpConnection, NodeHello nodeHello) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedCloseConnectionDuplicateClientName(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.CloseConnectionDuplicateClientName)
+        * @see FcpListener#receivedCloseConnectionDuplicateClientName(FcpConnection,
+        *      CloseConnectionDuplicateClientName)
         */
        public void receivedCloseConnectionDuplicateClientName(FcpConnection fcpConnection, CloseConnectionDuplicateClientName closeConnectionDuplicateClientName) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedSSKKeypair(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.SSKKeypair)
+        * @see FcpListener#receivedSSKKeypair(FcpConnection, SSKKeypair)
         */
        public void receivedSSKKeypair(FcpConnection fcpConnection, SSKKeypair sskKeypair) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedPeer(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.Peer)
+        * @see FcpListener#receivedPeer(FcpConnection, Peer)
         */
        public void receivedPeer(FcpConnection fcpConnection, Peer peer) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedEndListPeers(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.EndListPeers)
+        * @see FcpListener#receivedEndListPeers(FcpConnection, EndListPeers)
         */
        public void receivedEndListPeers(FcpConnection fcpConnection, EndListPeers endListPeers) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedPeerNote(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.PeerNote)
+        * @see FcpListener#receivedPeerNote(FcpConnection, PeerNote)
         */
        public void receivedPeerNote(FcpConnection fcpConnection, PeerNote peerNote) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedEndListPeerNotes(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.EndListPeerNotes)
+        * @see FcpListener#receivedEndListPeerNotes(FcpConnection,
+        *      EndListPeerNotes)
         */
        public void receivedEndListPeerNotes(FcpConnection fcpConnection, EndListPeerNotes endListPeerNotes) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedPeerRemoved(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.PeerRemoved)
+        * @see FcpListener#receivedPeerRemoved(FcpConnection, PeerRemoved)
         */
        public void receivedPeerRemoved(FcpConnection fcpConnection, PeerRemoved peerRemoved) {
                /* empty. */
@@ -78,8 +72,7 @@ public class FcpAdapter implements FcpListener {
        /**
         * {@inheritDoc}
         * 
-        * @see FcpListener#receivedNodeData(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.NodeData)
+        * @see FcpListener#receivedNodeData(FcpConnection, NodeData)
         */
        public void receivedNodeData(FcpConnection fcpConnection, NodeData nodeData) {
                /* empty. */
@@ -88,48 +81,43 @@ public class FcpAdapter implements FcpListener {
        /**
         * {@inheritDoc}
         * 
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedTestDDAReply(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.TestDDAReply)
+        * @see FcpListener#receivedTestDDAReply(FcpConnection, TestDDAReply)
         */
        public void receivedTestDDAReply(FcpConnection fcpConnection, TestDDAReply testDDAReply) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedTestDDAComplete(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.TestDDAComplete)
+        * @see FcpListener#receivedTestDDAComplete(FcpConnection, TestDDAComplete)
         */
        public void receivedTestDDAComplete(FcpConnection fcpConnection, TestDDAComplete testDDAComplete) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedPersistentGet(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.PersistentGet)
+        * @see FcpListener#receivedPersistentGet(FcpConnection, PersistentGet)
         */
        public void receivedPersistentGet(FcpConnection fcpConnection, PersistentGet persistentGet) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedPersistentPut(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.PersistentPut)
+        * @see FcpListener#receivedPersistentPut(FcpConnection, PersistentPut)
         */
        public void receivedPersistentPut(FcpConnection fcpConnection, PersistentPut persistentPut) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedEndListPersistentRequests(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.EndListPersistentRequests)
+        * @see FcpListener#receivedEndListPersistentRequests(FcpConnection,
+        *      EndListPersistentRequests)
         */
        public void receivedEndListPersistentRequests(FcpConnection fcpConnection, EndListPersistentRequests endListPersistentRequests) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedURIGenerated(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.URIGenerated)
+        * @see FcpListener#receivedURIGenerated(FcpConnection, URIGenerated)
         */
        public void receivedURIGenerated(FcpConnection fcpConnection, URIGenerated uriGenerated) {
                /* empty. */
@@ -143,48 +131,52 @@ public class FcpAdapter implements FcpListener {
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedAllData(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.AllData)
+        * @see FcpListener#receivedAllData(FcpConnection, AllData)
         */
        public void receivedAllData(FcpConnection fcpConnection, AllData allData) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedSimpleProgress(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.SimpleProgress)
+        * @see FcpListener#receivedSimpleProgress(FcpConnection, SimpleProgress)
         */
        public void receivedSimpleProgress(FcpConnection fcpConnection, SimpleProgress simpleProgress) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedStartedCompression(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.StartedCompression)
+        * @see FcpListener#receivedStartedCompression(FcpConnection,
+        *      StartedCompression)
         */
        public void receivedStartedCompression(FcpConnection fcpConnection, StartedCompression startedCompression) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receviedFinishedCompression(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.FinishedCompression)
+        * @see FcpListener#receviedFinishedCompression(FcpConnection,
+        *      FinishedCompression)
         */
        public void receviedFinishedCompression(FcpConnection fcpConnection, FinishedCompression finishedCompression) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedProtocolError(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.ProtocolError)
+        * @see FcpListener#receivedUnknownPeerNoteType(FcpConnection,
+        *      UnknownPeerNoteType)
+        */
+       public void receivedUnknownPeerNoteType(FcpConnection fcpConnection, UnknownPeerNoteType unknownPeerNoteType) {
+               /* empty. */
+       }
+
+       /**
+        * @see FcpListener#receivedProtocolError(FcpConnection, ProtocolError)
         */
        public void receivedProtocolError(FcpConnection fcpConnection, ProtocolError protocolError) {
                /* empty. */
        }
 
        /**
-        * @see net.pterodactylus.util.fcp.FcpListener#receivedMessage(net.pterodactylus.util.fcp.FcpConnection,
-        *      net.pterodactylus.util.fcp.FcpMessage)
+        * @see FcpListener#receivedMessage(FcpConnection, FcpMessage)
         */
        public void receivedMessage(FcpConnection fcpConnection, FcpMessage fcpMessage) {
                /* empty. */