-
Notifications
You must be signed in to change notification settings - Fork 426
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Maven | Exclude non-exported packages from Javadocs (#988)
- Loading branch information
1 parent
96f31c7
commit 4e4d6bc
Showing
3 changed files
with
28 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
src/main/java/mssql/googlecode/concurrentlinkedhashmap/Linked.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package mssql.googlecode.concurrentlinkedhashmap; | ||
|
||
import java.util.Deque; | ||
|
||
/** | ||
* An element that is linked on the {@link Deque}. | ||
*/ | ||
interface Linked<T extends Linked<T>> { | ||
|
||
/** | ||
* Retrieves the previous element or <tt>null</tt> if either the element is | ||
* unlinked or the first element on the deque. | ||
*/ | ||
T getPrevious(); | ||
|
||
/** Sets the previous element or <tt>null</tt> if there is no link. */ | ||
void setPrevious(T prev); | ||
|
||
/** | ||
* Retrieves the next element or <tt>null</tt> if either the element is | ||
* unlinked or the last element on the deque. | ||
*/ | ||
T getNext(); | ||
|
||
/** Sets the next element or <tt>null</tt> if there is no link. */ | ||
void setNext(T next); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters