classes structure
This commit is contained in:
18
classes/relationSchema.abstract.class.php
Normal file
18
classes/relationSchema.abstract.class.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
// Using Abstract Factory Pattern for exporting relational Schema in different Formats !
|
||||
abstract class exportRelationSchema
|
||||
{
|
||||
private $pageTitle; // Title of the page
|
||||
private $autoLayoutType; // Internal or Foreign Key Relations;
|
||||
|
||||
public function setPageTitle($title)
|
||||
{
|
||||
$this->pageTitle=$title;
|
||||
}
|
||||
|
||||
public function createPage()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user