Revision 43fbf0dd
Added by Leszek Koltunski over 8 years ago
| src/main/java/org/distorted/library/DistortedInputSurface.java | ||
|---|---|---|
| 27 | 27 |
interface DistortedInputSurface |
| 28 | 28 |
{
|
| 29 | 29 |
/** |
| 30 |
* Return a unique ID of this Surface. |
|
| 30 |
* Do not document this as public API |
|
| 31 |
* @y.exclude |
|
| 31 | 32 |
*/ |
| 32 | 33 |
long getID(); |
| 33 | 34 |
/** |
| 34 |
* Return the width of this Surface. |
|
| 35 |
* Do not document this as public API |
|
| 36 |
* @y.exclude |
|
| 35 | 37 |
*/ |
| 36 | 38 |
int getWidth(); |
| 37 | 39 |
/** |
| 38 |
* Return the height of this Surface. |
|
| 40 |
* Do not document this as public API |
|
| 41 |
* @y.exclude |
|
| 39 | 42 |
*/ |
| 40 | 43 |
int getHeight(); |
| 41 | 44 |
/** |
| src/main/java/org/distorted/library/DistortedOutputSurface.java | ||
|---|---|---|
| 289 | 289 |
* DistortedAttacheable interface, which should really be a class that we extend here instead but |
| 290 | 290 |
* Java has no multiple inheritance. |
| 291 | 291 |
* |
| 292 |
* @y.exclude |
|
| 292 | 293 |
* @param node new Node to add. |
| 293 | 294 |
*/ |
| 294 | 295 |
public void attachNow(DistortedNode node) |
| ... | ... | |
| 347 | 348 |
* DistortedAttacheable interface, which should really be a class that we extend here instead but |
| 348 | 349 |
* Java has no multiple inheritance. |
| 349 | 350 |
* |
| 351 |
* @y.exclude |
|
| 350 | 352 |
* @param node The Node to remove. |
| 351 | 353 |
*/ |
| 352 | 354 |
public void detachNow(DistortedNode node) |
| ... | ... | |
| 374 | 376 |
* This is not really part of the public API. Has to be public only because it is a part of the |
| 375 | 377 |
* DistortedAttacheable interface, which should really be a class that we extend here instead but |
| 376 | 378 |
* Java has no multiple inheritance. |
| 379 |
* |
|
| 380 |
* @y.exclude |
|
| 377 | 381 |
*/ |
| 378 | 382 |
public void detachAllNow() |
| 379 | 383 |
{
|
Also available in: Unified diff
Exclude certain public methods from Javadoc API.