Revision 26e18334
Added by Leszek Koltunski almost 8 years ago
src/main/java/org/distorted/library/DistortedAttacheable.java | ||
---|---|---|
30 | 30 |
*/ |
31 | 31 |
interface DistortedAttacheable |
32 | 32 |
{ |
33 |
void attachNow(DistortedNode n); |
|
34 |
void detachNow(DistortedNode n); |
|
33 |
/** |
|
34 |
* Not part of public API, do not document |
|
35 |
* @y.exclude |
|
36 |
*/ |
|
37 |
void attachNow(DistortedNode node); |
|
38 |
/** |
|
39 |
* Not part of public API, do not document |
|
40 |
* @y.exclude |
|
41 |
*/ |
|
42 |
void detachNow(DistortedNode node); |
|
43 |
/** |
|
44 |
* Not part of public API, do not document |
|
45 |
* @y.exclude |
|
46 |
*/ |
|
35 | 47 |
void detachAllNow(); |
36 | 48 |
} |
Also available in: Unified diff
Exclude certain public methods from Javadoc API.