| 1 |
// |
|---|
| 2 |
// =========================================================================== |
|---|
| 3 |
// |
|---|
| 4 |
// Title: DocStub.java |
|---|
| 5 |
// Description: Somehwat similar to javadoc |
|---|
| 6 |
// Author: Raphal Szwarc <zoe (underscore) info (at) mac (dot) com> |
|---|
| 7 |
// Creation Date: Thu Dec 09 2004 |
|---|
| 8 |
// Legal: Copyright (C) 2004 Raphal Szwarc |
|---|
| 9 |
// |
|---|
| 10 |
// This software is provided 'as-is', without any express or implied warranty. |
|---|
| 11 |
// In no event will the author be held liable for any damages arising from |
|---|
| 12 |
// the use of this software. |
|---|
| 13 |
// |
|---|
| 14 |
// Permission is granted to anyone to use this software for any purpose, |
|---|
| 15 |
// including commercial applications, and to alter it and |
|---|
| 16 |
// redistribute it freely, subject to the following restrictions: |
|---|
| 17 |
// |
|---|
| 18 |
// 1. The origin of this software must not be misrepresented; |
|---|
| 19 |
// you must not claim that you wrote the original software. |
|---|
| 20 |
// If you use this software in a product, an acknowledgment |
|---|
| 21 |
// in the product documentation would be appreciated but is not required. |
|---|
| 22 |
// |
|---|
| 23 |
// 2. Altered source versions must be plainly marked as such, |
|---|
| 24 |
// and must not be misrepresented as being the original software. |
|---|
| 25 |
// |
|---|
| 26 |
// 3. This notice may not be removed or altered from any source distribution. |
|---|
| 27 |
// |
|---|
| 28 |
// --------------------------------------------------------------------------- |
|---|
| 29 |
// |
|---|
| 30 |
|
|---|
| 31 |
package alt.dev.dydoc; |
|---|
| 32 |
|
|---|
| 33 |
import alt.dev.pl.PL; |
|---|
| 34 |
|
|---|
| 35 |
import alt.dev.szfoundation.SZLog; |
|---|
| 36 |
|
|---|
| 37 |
public class DocStub extends Stub |
|---|
| 38 |
{ |
|---|
| 39 |
|
|---|
| 40 |
// =========================================================================== |
|---|
| 41 |
// Constant(s) |
|---|
| 42 |
// --------------------------------------------------------------------------- |
|---|
| 43 |
|
|---|
| 44 |
// =========================================================================== |
|---|
| 45 |
// Class variable(s) |
|---|
| 46 |
// --------------------------------------------------------------------------- |
|---|
| 47 |
|
|---|
| 48 |
// =========================================================================== |
|---|
| 49 |
// Instance variable(s) |
|---|
| 50 |
// --------------------------------------------------------------------------- |
|---|
| 51 |
|
|---|
| 52 |
// =========================================================================== |
|---|
| 53 |
// Constructor method(s) |
|---|
| 54 |
// --------------------------------------------------------------------------- |
|---|
| 55 |
|
|---|
| 56 |
public DocStub(final PL someProperties) |
|---|
| 57 |
{ |
|---|
| 58 |
super( someProperties ); |
|---|
| 59 |
} |
|---|
| 60 |
|
|---|
| 61 |
// =========================================================================== |
|---|
| 62 |
// Class method(s) |
|---|
| 63 |
// --------------------------------------------------------------------------- |
|---|
| 64 |
|
|---|
| 65 |
// =========================================================================== |
|---|
| 66 |
// Instance method(s) |
|---|
| 67 |
// --------------------------------------------------------------------------- |
|---|
| 68 |
|
|---|
| 69 |
public void stub(final Object anObject) |
|---|
| 70 |
{ |
|---|
| 71 |
} |
|---|
| 72 |
|
|---|
| 73 |
} |
|---|