/*
* @ (#) cngift.php 1.82 03/06/25
*
* Sample documents written in Flowering stone
* will be a simple demonstration of coding specifications
*
*/
Require ("db.php");
/**
* Demonstration Use Class
*
* @version 1.82 03.06.25
* @author Blossom Stone
*/
Class Blah extends SomeClass {
/* The comment for this class runtime is written here */
/** the comment about the variable is written here */
static int $classVar 1;
/**
* Write multiple lines of comments on variables here
*/
static string classVar2;
Document comment for the/** variable */
int instanceVar1;
Document comment for the/** variable */
Int[] INSTANCEVAR3;
/**
* Comment of constructor function
*/
function blah () {
// ... Here to perform ...
}
/**
* ... Document Comment for function ...
*/
function dosomething () {
// ... Here to perform ...
}
/**
* ... Comment Document for the method:
* Multi-line Comment
*/
public void Dosomethingelse (Object someparam) {
// ... Here to perform ...
}
}